【提問1】
Chrome調用本地 everything.exe, everything 好像有本地 FTP 服務器?
【DeepSeek R1 回答】
是的,Everything 確實內置了 HTTP/FTP 服務器功能,這提供了一種相對安全的瀏覽器與本地應用交互的方式。以下是完整的實現方案:
通過 Everything 的 HTTP 服務器實現瀏覽器交互
Everything (v1.4+) 內置的 HTTP 服務器允許通過瀏覽器執行搜索操作:
-
啟用 Everything HTTP 服務器:
- 打開 Everything → 工具 → 選項 → HTTP 服務器
- 啟用 HTTP 服務器(默認端口 8080)
- 設置允許的訪問權限(推薦設置為
127.0.0.1
僅限本地訪問)
-
HTML 頁面通過 AJAX 調用 Everything:
<!DOCTYPE html>
<html>
<body><input type="text" id="searchInput" placeholder="搜索文件..."><button onclick="searchEverything()">搜索</button><div id="results"></div><script>async function searchEverything() {const query = document.getElementById('searchInput').value;const response = await fetch(`http://localhost:8080/?search=${encodeURIComponent(query)}&json=1`);const data = await response.json();let resultsHTML = "<h3>搜索結果:</h3><ul>";data.results.forEach(file => {resultsHTML += `<li><a href="file:///${file.path}" target="_blank">${file.name}</a></li>`;});resultsHTML += "</ul>";document.getElementById("results").innerHTML = resultsHTML;}</script>
</body>
</html>
通過 Everything 的 FTP 服務器訪問文件
Everything 也支持 FTP 服務器(需在設置中啟用):
// 在頁面中生成 FTP 鏈接
function generateFtpLink(path) {return `ftp://localhost:21/${encodeURI(path)}`;
}// 使用示例
document.getElementById('ftpLink').href = generateFtpLink("C:/Users/MyFile.txt");
進階方案:通過 Native Messaging 深度集成
若需要執行更復雜的本地操作(如啟動程序),需創建瀏覽器擴展:
- 創建擴展文件結構:
everything-extension/
├── manifest.json
├── background.js
├── content.js
└── native-host/├── everything-host.bat└── everything-host.ps1
- manifest.json:
{"manifest_version": 3,"name": "Everything 集成","version": "1.0","permissions": ["nativeMessaging"],"background": {"service_worker": "background.js"},"content_scripts": [{"matches": ["http://localhost/*"],"js": ["content.js"]}]
}
- 本地主機應用 (everything-host.ps1):
while ($true) {$input = [Console]::In.ReadLine()$command = $input | ConvertFrom-Json# 執行 Everything 命令if ($command.action -eq "launch") {Start-Process "C:\Path\To\Everything.exe" -ArgumentList "-search", $command.query[Console]::Out.WriteLine('{"status":"success"}')}
}
- 注冊本地主機(注冊表文件):
Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Google\Chrome\NativeMessagingHosts\com.example.everything_host]
@="C:\\path\\to\\everything-host-manifest.json"
- 擴展通信腳本:
// content.js
document.getElementById('launchBtn').addEventListener('click', () => {chrome.runtime.sendNativeMessage('com.example.everything_host', {action: "launch", query: "*.pdf"},response => console.log(response));
});
安全注意事項
- 限制 HTTP/FTP 服務器僅限本地訪問(
127.0.0.1
) - 對用戶輸入進行嚴格過濾,防止路徑遍歷攻擊
- 在擴展中使用最小權限原則
- 避免通過 FTP 傳輸敏感文件
- 所有本地主機腳本需進行代碼簽名
替代方案(無需 Everything)
若只需簡單命令執行,可用 PowerShell 作為后端:
// Node.js 服務器
const express = require('express');
const { exec } = require('child_process');
const app = express();app.get('/run', (req, res) => {const cmd = req.query.cmd;exec(cmd, (error, stdout) => {res.send(stdout || error.message);});
});app.listen(3000);
然后在 HTML 中調用:
fetch('http://localhost:3000/run?cmd=dir').then(response => response.text()).then(data => console.log(data));
總結:Everything 的 HTTP/FTP 服務器是最安全便捷的瀏覽器集成方案。對于需要深度系統集成的場景,Native Messaging 擴展方案雖然復雜但功能最強大。普通用戶推薦使用 HTTP 服務器方案即可滿足大部分需求。
【提問2】
通過 Everything 的 FTP 服務器訪問文件,這能出一個詳細解決方案嗎?chrome 能使用everything 搜索本地某目錄里某文件嗎
【DeepSeek R1 回答】
下面我將提供一個完整的詳細解決方案,通過 Chrome 瀏覽器利用 Everything 的 FTP 服務器訪問本地文件系統,并實現文件搜索功能。
完整解決方案:Chrome + Everything FTP 服務器集成
第一部分:Everything 配置
-
啟用 Everything FTP 服務器
- 打開 Everything → 工具 → 選項 → FTP 服務器
- 勾選 “啟用 FTP 服務器”
- 配置設置:
服務器名稱: MyLocalFTP 監聽端口: 2121(避免使用 21 端口需要管理員權限) 綁定到: 127.0.0.1(僅限本地訪問) 用戶名: (留空表示匿名訪問) 密碼: (留空) 根目錄: C:\(或您想要搜索的特定目錄)
- 保存設置
-
驗證 FTP 服務器
- 打開文件資源管理器,輸入
ftp://127.0.0.1:2121
- 應該能看到本地文件列表
- 打開文件資源管理器,輸入
第二部分:HTML/JavaScript 實現
<!DOCTYPE html>
<html lang="zh-CN">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Everything FTP 文件搜索器</title><style>body { font-family: 'Segoe UI', Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; }.search-box { display: flex; margin-bottom: 20px; }#searchInput { flex: 1; padding: 10px; font-size: 16px; border: 1px solid #ddd; }#searchButton { padding: 10px 20px; background: #4285f4; color: white; border: none; cursor: pointer; }#results { list-style: none; padding: 0; }.file-item { padding: 10px; border-bottom: 1px solid #eee; }.file-item:hover { background-color: #f9f9f9; }.file-link { color: #1a73e8; text-decoration: none; }.file-link:hover { text-decoration: underline; }.file-info { font-size: 12px; color: #666; margin-top: 5px; }.loading { display: none; text-align: center; padding: 20px; }</style>
</head>
<body><h1>本地文件搜索器 (Everything FTP)</h1><div class="search-box"><input type="text" id="searchInput" placeholder="輸入文件名或擴展名 (如: *.pdf project.docx)"><button id="searchButton">搜索</button></div><div class="loading" id="loadingIndicator"><p>正在搜索中... <span id="resultCount">0</span> 個結果</p></div><ul id="results"></ul><script>// Everything FTP 配置const FTP_HOST = '127.0.0.1';const FTP_PORT = 2121;const FTP_URL = `ftp://${FTP_HOST}:${FTP_PORT}/`;// 搜索狀態let currentSearch = null;let resultCount = 0;// DOM 元素const searchInput = document.getElementById('searchInput');const searchButton = document.getElementById('searchButton');const resultsContainer = document.getElementById('results');const loadingIndicator = document.getElementById('loadingIndicator');const resultCountElement = document.getElementById('resultCount');// 初始化document.addEventListener('DOMContentLoaded', () => {searchButton.addEventListener('click', startSearch);searchInput.addEventListener('keyup', (e) => {if (e.key === 'Enter') startSearch();});});// 開始搜索function startSearch() {const query = searchInput.value.trim();if (!query) return;// 中止之前的搜索if (currentSearch) {currentSearch.abort();}// 重置結果resultsContainer.innerHTML = '';resultCount = 0;resultCountElement.textContent = '0';loadingIndicator.style.display = 'block';// 創建 Everything FTP 搜索 URLconst searchUrl = `${FTP_URL}?search=${encodeURIComponent(query)}`;// 創建 XMLHttpRequest 對象currentSearch = new XMLHttpRequest();currentSearch.open('GET', searchUrl, true);// 處理響應數據(流式處理)let buffer = '';currentSearch.onprogress = function(event) {const chunk = currentSearch.responseText.substring(buffer.length);buffer += chunk;// 處理接收到的數據processFTPResponse(buffer);resultCountElement.textContent = resultCount;};currentSearch.onload = function() {if (currentSearch.status === 200) {processFTPResponse(buffer);loadingIndicator.style.display = 'none';}};currentSearch.onerror = function() {loadingIndicator.style.display = 'none';resultsContainer.innerHTML = '<li class="file-item">連接FTP服務器失敗。請確保Everything正在運行且FTP服務器已啟用。</li>';};currentSearch.send();}// 處理FTP響應數據function processFTPResponse(data) {// 簡單解析FTP列表格式const lines = data.split('\r\n');for (const line of lines) {if (!line.trim()) continue;// 解析文件信息(簡化版,實際需要更復雜的解析)const parts = line.split(/\s+/);if (parts.length < 9) continue;const permissions = parts[0];const isDirectory = permissions[0] === 'd';const size = parts[4];const date = `${parts[5]} ${parts[6]} ${parts[7]}`;const filename = parts.slice(8).join(' ');const fullPath = filename;// 只顯示文件(過濾目錄)if (!isDirectory) {addFileResult(fullPath, size, date);}}}// 添加文件到結果列表function addFileResult(path, size, modifiedDate) {resultCount++;// 提取文件名和擴展名const filename = path.split('/').pop() || path;const extension = filename.split('.').pop() || '';// 創建文件鏈接const fileUrl = `${FTP_URL}${encodeURI(path)}`;const listItem = document.createElement('li');listItem.className = 'file-item';listItem.innerHTML = `<a href="${fileUrl}" class="file-link" download="${filename}">${filename}</a><div class="file-info">大小: ${formatFileSize(size)} | 修改日期: ${modifiedDate} | 類型: ${extension.toUpperCase()} 文件</div>`;resultsContainer.appendChild(listItem);}// 格式化文件大小function formatFileSize(bytes) {if (bytes < 1024) return bytes + ' B';if (bytes < 1048576) return (bytes / 1024).toFixed(1) + ' KB';return (bytes / 1048576).toFixed(1) + ' MB';}</script>
</body>
</html>
第三部分:使用說明
-
準備工作:
- 確保 Everything 正在運行且 FTP 服務器已啟用
- 在 Chrome 中打開此 HTML 文件(直接雙擊或通過
file://
路徑打開)
-
搜索功能:
- 在搜索框輸入查詢:
- 使用 Everything 搜索語法:
*.pdf
、project.docx
、*.jpg width:1920 height:1080
- 支持布爾運算符:
AND
、OR
、NOT
- 使用 Everything 搜索語法:
- 點擊搜索或按 Enter 鍵
- 結果將實時加載顯示
- 在搜索框輸入查詢:
-
文件操作:
- 點擊文件名將下載該文件
- 鼠標懸停在文件項上可查看詳細信息
第四部分:安全增強配置
由于直接使用 FTP 存在安全風險,建議添加以下安全措施:
-
Everything 設置:
; Everything.ini 安全配置 ftp_server_allow_anonymous=0 ftp_server_username=chrome_user ftp_server_password=secure_password123 ftp_server_root_path=C:\Users\Public\Share ftp_server_passive_mode=1
-
HTML 身份驗證:
// 在搜索URL中添加憑據 const FTP_AUTH = 'chrome_user:secure_password123'; const searchUrl = `ftp://${FTP_AUTH}@${FTP_HOST}:${FTP_PORT}/?search=${query}`;
-
限制文件類型:
// 在 addFileResult 函數中添加 const allowedExtensions = ['pdf', 'docx', 'jpg', 'png']; if (!allowedExtensions.includes(extension.toLowerCase())) return;
第五部分:替代方案(推薦)
由于現代瀏覽器對 FTP 支持有限(Chrome 88+ 已禁用 FTP),推薦使用 Everything 的 HTTP 服務器方案:
// 使用 HTTP 服務器替代 FTP
const HTTP_EVERYTHING_URL = 'http://localhost:8080/';async function searchEverything() {const response = await fetch(`${HTTP_EVERYTHING_URL}?search=${query}&json=1`);const data = await response.json();data.results.forEach(file => {// 創建本地文件鏈接const fileUrl = `file:///${file.path.replace(/\\/g, '/')}`;addFileResult(file.path, file.size, file.date_modified);});
}
注意事項
-
瀏覽器限制:
- Chrome 88+ 默認禁用 FTP 支持
- 文件下載可能被瀏覽器安全策略阻止
- 本地文件訪問需要用戶授權
-
安全警告:
- 僅在受信任的環境中使用
- 不要將 FTP 服務器暴露在公共網絡
- 設置強密碼或使用 HTTP 服務器替代
-
性能優化:
- 限制返回結果數量(在 URL 中添加
&offset=0&count=100
) - 添加防抖機制避免頻繁搜索
- 使用 Web Workers 處理大型結果集
- 限制返回結果數量(在 URL 中添加
-
跨平臺支持:
- Windows:完整支持
- macOS/Linux:需要 Wine 或 CrossOver 運行 Everything
這個解決方案讓您可以直接在 Chrome 瀏覽器中利用 Everything 的強大搜索功能訪問本地文件系統,同時通過 FTP 服務器提供文件訪問功能。對于現代瀏覽器,建議優先使用 Everything 的 HTTP 服務器方案以獲得更好的兼容性。
【提問3】
通過 Everything 的 HTTP 服務器訪問文件,這能出一個詳細解決方案嗎?chrome 能使用everything 搜索本地某目錄里某文件嗎
【DeepSeek R1 回答】
Everything HTTP 服務器集成解決方案
下面我將提供一個完整的解決方案,通過 Chrome 瀏覽器利用 Everything 的 HTTP 服務器實現本地文件搜索和訪問功能。
整體思路
- 配置 Everything 的 HTTP 服務器
- 創建 HTML 頁面調用 Everything API
- 實現搜索功能和結果展示
- 提供文件預覽和下載功能
完整解決方案
<!DOCTYPE html>
<html lang="zh-CN">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Everything 本地文件搜索器</title><style>:root {--primary-color: #4285f4;--secondary-color: #34a853;--background-color: #f8f9fa;--card-color: #ffffff;--text-color: #202124;--border-color: #dadce0;}* {box-sizing: border-box;margin: 0;padding: 0;}body {font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;background-color: var(--background-color);color: var(--text-color);line-height: 1.6;padding: 20px;max-width: 1200px;margin: 0 auto;}header {text-align: center;margin-bottom: 30px;padding: 20px 0;border-bottom: 1px solid var(--border-color);}h1 {color: var(--primary-color);font-size: 2.5rem;margin-bottom: 10px;}.subtitle {color: #5f6368;font-size: 1.1rem;max-width: 700px;margin: 0 auto;}.search-container {background-color: var(--card-color);border-radius: 8px;box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);padding: 25px;margin-bottom: 30px;}.search-box {display: flex;gap: 10px;margin-bottom: 20px;}#searchInput {flex: 1;padding: 15px;font-size: 16px;border: 1px solid var(--border-color);border-radius: 4px;transition: border-color 0.3s;}#searchInput:focus {outline: none;border-color: var(--primary-color);box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);}#searchButton {padding: 15px 25px;background-color: var(--primary-color);color: white;border: none;border-radius: 4px;font-size: 16px;cursor: pointer;transition: background-color 0.3s;}#searchButton:hover {background-color: #3367d6;}.filters {display: flex;gap: 15px;flex-wrap: wrap;margin-bottom: 20px;}.filter-group {flex: 1;min-width: 200px;}.filter-group label {display: block;margin-bottom: 5px;font-weight: 500;}.filter-group select, .filter-group input {width: 100%;padding: 10px;border: 1px solid var(--border-color);border-radius: 4px;}.results-container {background-color: var(--card-color);border-radius: 8px;box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);overflow: hidden;}.results-header {padding: 15px 20px;background-color: #f5f5f5;border-bottom: 1px solid var(--border-color);display: flex;justify-content: space-between;align-items: center;}#resultCount {font-weight: 500;}#results {max-height: 500px;overflow-y: auto;}.result-item {padding: 15px 20px;border-bottom: 1px solid var(--border-color);display: flex;align-items: center;}.result-item:hover {background-color: #f8f9fa;}.file-icon {width: 32px;height: 32px;margin-right: 15px;display: flex;align-items: center;justify-content: center;color: #5f6368;}.file-icon img {max-width: 100%;max-height: 100%;}.file-info {flex: 1;min-width: 0;}.file-name {font-weight: 500;margin-bottom: 5px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}.file-details {display: flex;gap: 15px;font-size: 0.85rem;color: #5f6368;}.file-actions {display: flex;gap: 10px;}.action-btn {padding: 8px 12px;background-color: #f1f3f4;border: none;border-radius: 4px;cursor: pointer;transition: background-color 0.3s;}.action-btn:hover {background-color: #e8eaed;}.preview-btn {background-color: #f8f9fa;color: var(--primary-color);}.download-btn {background-color: var(--secondary-color);color: white;}.loading-container {display: none;text-align: center;padding: 40px;}.loading-spinner {border: 4px solid rgba(0, 0, 0, 0.1);border-top: 4px solid var(--primary-color);border-radius: 50%;width: 40px;height: 40px;animation: spin 1s linear infinite;margin: 0 auto 20px;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}.no-results {text-align: center;padding: 40px;color: #5f6368;}.error-message {background-color: #fce8e6;color: #d93025;padding: 15px;border-radius: 4px;margin-top: 20px;display: none;}.preview-container {display: none;position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0,0,0,0.8);z-index: 1000;padding: 20px;}.preview-content {background-color: white;border-radius: 8px;max-width: 900px;max-height: 90vh;margin: 20px auto;overflow: auto;position: relative;}.preview-header {padding: 15px 20px;background-color: #f5f5f5;display: flex;justify-content: space-between;align-items: center;position: sticky;top: 0;z-index: 10;}.close-preview {background: none;border: none;font-size: 1.5rem;cursor: pointer;color: #5f6368;}.preview-body {padding: 20px;}.preview-body img, .preview-body video {max-width: 100%;display: block;margin: 0 auto;}.preview-body audio {width: 100%;}footer {text-align: center;margin-top: 40px;padding: 20px 0;color: #5f6368;font-size: 0.9rem;border-top: 1px solid var(--border-color);}@media (max-width: 768px) {.search-box {flex-direction: column;}.file-details {flex-wrap: wrap;gap: 8px;}.result-item {flex-direction: column;align-items: flex-start;}.file-actions {margin-top: 10px;width: 100%;}.action-btn {flex: 1;}}</style>
</head>
<body><header><h1>Everything 本地文件搜索器</h1><p class="subtitle">通過 Everything HTTP 服務器實現本地文件搜索、預覽和管理功能</p></header><main><section class="search-container"><div class="search-box"><input type="text" id="searchInput" placeholder="輸入文件名、擴展名或路徑 (如: *.pdf project.docx)" autofocus><button id="searchButton">搜索文件</button></div><div class="filters"><div class="filter-group"><label for="fileType">文件類型</label><select id="fileType"><option value="">所有文件類型</option><option value=".pdf">PDF 文檔</option><option value=".doc,.docx">Word 文檔</option><option value=".xls,.xlsx">Excel 表格</option><option value=".jpg,.jpeg,.png,.gif">圖片文件</option><option value=".mp4,.avi,.mov">視頻文件</option><option value=".mp3,.wav">音頻文件</option></select></div><div class="filter-group"><label for="searchPath">搜索路徑</label><input type="text" id="searchPath" placeholder="如: C:\Projects\ D:\Documents\"></div><div class="filter-group"><label for="sortBy">排序方式</label><select id="sortBy"><option value="date_modified:desc">最新修改</option><option value="date_modified:asc">最早修改</option><option value="size:desc">最大文件</option><option value="size:asc">最小文件</option><option value="name:asc">名稱 (A-Z)</option><option value="name:desc">名稱 (Z-A)</option></select></div></div><div class="error-message" id="errorMessage">無法連接到 Everything HTTP 服務器。請確保 Everything 正在運行且 HTTP 服務器已啟用。</div></section><section class="results-container"><div class="results-header"><h2>搜索結果</h2><div id="resultCount">0 個文件</div></div><div class="loading-container" id="loadingIndicator"><div class="loading-spinner"></div><p>正在搜索中...</p></div><div id="results"><div class="no-results"><p>輸入搜索條件并點擊"搜索文件"按鈕開始搜索</p></div></div></section></main><div class="preview-container" id="previewContainer"><div class="preview-content"><div class="preview-header"><h3 id="previewFileName">文件預覽</h3><button class="close-preview" id="closePreview">×</button></div><div class="preview-body" id="previewBody"></div></div></div><footer><p>Everything 本地文件搜索器 © 2023 | 需要 Everything v1.4+ 和啟用的 HTTP 服務器</p></footer><script>// Everything HTTP 服務器配置const EVERYTHING_HTTP_URL = "http://localhost:8080";// DOM 元素const searchInput = document.getElementById('searchInput');const searchButton = document.getElementById('searchButton');const fileTypeSelect = document.getElementById('fileType');const searchPathInput = document.getElementById('searchPath');const sortBySelect = document.getElementById('sortBy');const resultsContainer = document.getElementById('results');const resultCountElement = document.getElementById('resultCount');const loadingIndicator = document.getElementById('loadingIndicator');const errorMessage = document.getElementById('errorMessage');const previewContainer = document.getElementById('previewContainer');const previewBody = document.getElementById('previewBody');const previewFileName = document.getElementById('previewFileName');const closePreview = document.getElementById('closePreview');// 文件圖標映射const fileIcons = {'folder': '📁','pdf': '📄','doc': '📝','docx': '📝','xls': '📊','xlsx': '📊','jpg': '🖼?','jpeg': '🖼?','png': '🖼?','gif': '🖼?','mp4': '🎬','avi': '🎬','mov': '🎬','mp3': '🎵','wav': '🎵','exe': '??','zip': '📦','rar': '📦','default': '📄'};// 初始化document.addEventListener('DOMContentLoaded', () => {searchButton.addEventListener('click', performSearch);searchInput.addEventListener('keyup', (e) => {if (e.key === 'Enter') performSearch();});closePreview.addEventListener('click', () => {previewContainer.style.display = 'none';});// 測試連接testEverythingConnection();});// 測試 Everything 連接async function testEverythingConnection() {try {const response = await fetch(`${EVERYTHING_HTTP_URL}/?json=1&search=test`);if (!response.ok) throw new Error('Connection failed');errorMessage.style.display = 'none';} catch (error) {errorMessage.style.display = 'block';console.error('Everything connection test failed:', error);}}// 執行搜索async function performSearch() {const query = searchInput.value.trim();if (!query) return;// 顯示加載狀態loadingIndicator.style.display = 'block';resultsContainer.innerHTML = '';try {// 構建搜索參數let searchParams = new URLSearchParams();searchParams.append('search', query);searchParams.append('json', '1');// 添加文件類型過濾const fileType = fileTypeSelect.value;if (fileType) {searchParams.append('ext', fileType);}// 添加路徑過濾const searchPath = searchPathInput.value.trim();if (searchPath) {searchParams.append('path', searchPath);}// 添加排序const [sortField, sortOrder] = sortBySelect.value.split(':');searchParams.append('sort', sortField);searchParams.append('ascending', sortOrder === 'asc' ? '1' : '0');// 限制結果數量searchParams.append('count', '100');// 調用 Everything APIconst response = await fetch(`${EVERYTHING_HTTP_URL}/?${searchParams.toString()}`);if (!response.ok) {throw new Error(`HTTP error! status: ${response.status}`);}const data = await response.json();displayResults(data);} catch (error) {console.error('搜索失敗:', error);resultsContainer.innerHTML = `<div class="no-results"><p>搜索失敗: ${error.message}</p><p>請確保 Everything 正在運行且 HTTP 服務器已啟用</p></div>`;errorMessage.style.display = 'block';} finally {loadingIndicator.style.display = 'none';}}// 顯示搜索結果function displayResults(data) {if (!data || !data.results || data.results.length === 0) {resultsContainer.innerHTML = `<div class="no-results"><p>沒有找到匹配的文件</p><p>嘗試不同的搜索關鍵詞或調整篩選條件</p></div>`;resultCountElement.textContent = '0 個文件';return;}resultCountElement.textContent = `${data.results.length} 個文件`;let resultsHTML = '';data.results.forEach(file => {const fileExt = getFileExtension(file.name);const icon = fileIcons[fileExt] || fileIcons.default;resultsHTML += `<div class="result-item"><div class="file-icon">${icon}</div><div class="file-info"><div class="file-name" title="${file.path}">${file.name}</div><div class="file-details"><span>路徑: ${truncatePath(file.path, 50)}</span><span>大小: ${formatFileSize(file.size)}</span><span>修改: ${formatDate(file.date_modified)}</span></div></div><div class="file-actions"><button class="action-btn preview-btn" data-path="${encodeURIComponent(file.path)}">預覽</button><button class="action-btn download-btn" data-path="${encodeURIComponent(file.path)}">下載</button></div></div>`;});resultsContainer.innerHTML = resultsHTML;// 添加事件監聽器document.querySelectorAll('.preview-btn').forEach(btn => {btn.addEventListener('click', (e) => {const filePath = decodeURIComponent(e.target.dataset.path);previewFile(filePath);});});document.querySelectorAll('.download-btn').forEach(btn => {btn.addEventListener('click', (e) => {const filePath = decodeURIComponent(e.target.dataset.path);downloadFile(filePath);});});}// 預覽文件function previewFile(filePath) {const fileExt = getFileExtension(filePath).toLowerCase();const fileName = filePath.split('\\').pop();previewFileName.textContent = fileName;previewBody.innerHTML = '';// 根據文件類型顯示不同預覽if (['jpg', 'jpeg', 'png', 'gif'].includes(fileExt)) {previewBody.innerHTML = `<img src="${EVERYTHING_HTTP_URL}/?thumb=${encodeURIComponent(filePath)}" alt="${fileName}" onerror="this.src='https://via.placeholder.com/600x400?text=無法預覽圖片'">`;} else if (['mp4', 'avi', 'mov'].includes(fileExt)) {previewBody.innerHTML = `<video controls><source src="${EVERYTHING_HTTP_URL}/?download=${encodeURIComponent(filePath)}" type="video/${fileExt === 'mp4' ? 'mp4' : fileExt === 'mov' ? 'quicktime' : 'x-msvideo'}">您的瀏覽器不支持視頻預覽</video>`;}else if (['mp3', 'wav'].includes(fileExt)) {previewBody.innerHTML = `<audio controls><source src="${EVERYTHING_HTTP_URL}/?download=${encodeURIComponent(filePath)}" type="audio/${fileExt === 'mp3' ? 'mpeg' : 'wav'}">您的瀏覽器不支持音頻預覽</audio>`;}else if (fileExt === 'pdf') {previewBody.innerHTML = `<iframe src="${EVERYTHING_HTTP_URL}/?download=${encodeURIComponent(filePath)}" width="100%" height="600px" style="border: none;"></iframe>`;}else {previewBody.innerHTML = `<p>此文件類型不支持預覽</p><p>文件路徑: ${filePath}</p><p>大小: ${formatFileSize(getFileSizeFromPath(filePath))}</p>`;}previewContainer.style.display = 'block';}// 下載文件function downloadFile(filePath) {const fileName = filePath.split('\\').pop();const downloadUrl = `${EVERYTHING_HTTP_URL}/?download=${encodeURIComponent(filePath)}`;const a = document.createElement('a');a.href = downloadUrl;a.download = fileName;document.body.appendChild(a);a.click();document.body.removeChild(a);}// 輔助函數function getFileExtension(filename) {return filename.split('.').pop().toLowerCase();}function formatFileSize(bytes) {if (bytes === 0) return '0 B';const k = 1024;const sizes = ['B', 'KB', 'MB', 'GB'];const i = Math.floor(Math.log(bytes) / Math.log(k));return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];}function formatDate(dateString) {const date = new Date(dateString);return date.toLocaleDateString() + ' ' + date.toLocaleTimeString();}function truncatePath(path, maxLength) {if (path.length <= maxLength) return path;const parts = path.split('\\');let result = '';for (let i = parts.length - 1; i >= 0; i--) {const newPart = '...\\' + parts.slice(i).join('\\');if (newPart.length <= maxLength) {return newPart;}}return '...\\' + path.slice(-maxLength + 4);}function getFileSizeFromPath(filePath) {// 在實際應用中,這里應該通過API獲取文件大小// 此處僅用于演示return Math.floor(Math.random() * 10000000);}</script>
</body>
</html>
Everything 配置指南
步驟 1: 啟用 HTTP 服務器
- 打開 Everything → 工具 → 選項 → HTTP 服務器
- 啟用 HTTP 服務器
- 設置端口 (默認為 8080)
- 綁定到 127.0.0.1 (僅限本地訪問)
- 勾選"允許文件下載"和"允許文件瀏覽"
- 保存設置
步驟 2: 高級配置 (可選)
在 Everything.ini 文件中添加以下配置以增強功能:
http_server_port=8080
http_server_bind_address=127.0.0.1
http_server_allow_http=1
http_server_allow_download=1
http_server_allow_file_browsing=1
http_server_thumbnails=1
功能說明
-
文件搜索:
- 支持文件名、擴展名和路徑搜索
- 可使用 Everything 高級搜索語法 (如
*.pdf
,project.docx
,size:>10MB
)
-
篩選功能:
- 按文件類型篩選 (文檔、圖片、視頻等)
- 按路徑篩選 (如
C:\Projects\
) - 多種排序方式 (日期、大小、名稱)
-
文件操作:
- 預覽功能 (支持圖片、視頻、音頻和PDF)
- 文件下載
- 文件詳細信息查看
-
響應式設計:
- 適配桌面和移動設備
- 美觀的用戶界面
使用說明
- 確保 Everything 正在運行且 HTTP 服務器已啟用
- 在 Chrome 中打開此 HTML 文件
- 輸入搜索關鍵字并點擊"搜索文件"按鈕
- 瀏覽搜索結果,可點擊"預覽"查看文件內容或"下載"獲取文件
安全注意事項
- 僅限本地訪問:HTTP 服務器應綁定到 127.0.0.1
- 訪問控制:如果需要,可設置用戶名和密碼
- 文件權限:避免暴露敏感目錄
- 瀏覽器限制:部分文件類型預覽需要瀏覽器支持
此解決方案提供了一種安全、高效的方式來通過 Chrome 瀏覽器搜索和訪問本地文件,充分利用了 Everything 強大的搜索能力和 HTTP 服務器的靈活性。