Systematic workflow to resolve FileNotFoundError by locating and verifying file paths
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-file-locate-verify-79b8694959fc ,按照其中的说明把「file-locate-verify」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
When encountering FileNotFoundError or uncertain file paths, follow this systematic pattern to safely locate and verify files before executing operations.
First, use list_dir to inspect what files exist in your current working directory:
# Use the list_dir tool to see current directory contents
list_dir(path=".")
This reveals files in the immediate context and helps determine if you need to search elsewhere.
If the file is not in the current directory, use the find command to locate it by name:
# Search for a specific file by name (case-insensitive)
find . -iname "filename.pdf" 2>/dev/null
# Or search from root for system-wide files
find / -name "filename.pdf" 2>/dev/null
Tips:
-iname for case-insensitive matching2>/dev/null to suppress permission errorsBefore executing any operations on the discovered file, verify it exists and check its properties:
# Verify file existence and permissions at the full path
ls -la /full/path/to/discovered/file.pdf
This confirms:
Only after verification, proceed with your intended operation:
# Now safe to work with the verified path
file_path = "/full/path/to/discovered/file.pdf"
# ... your extraction or processing code here
# Task: Process a file that may be in an unknown location
# Step 1: Check current directory
dir_contents = list_dir(path=".")
print(f"Current directory contains: {dir_contents}")
# Step 2: Find the file if not present
if "target_file.xlsx" not in dir_contents:
result = run_shell(command='find . -iname "target_file.xlsx" 2>/dev/null')
file_path = result.stdout.strip().split('\n')[0]
print(f"Found file at: {file_path}")
# Step 3: Verify before proceeding
verification = run_shell(command=f'ls -la {file_path}')
print(f"Verification: {verification.stdout}")
# Step 4: Proceed with operation
# ... your code to process the file
find is correct without checkingls -la reveals if you have read/write accesslist_dir: Inspect directory contentsrun_shell: Execute find and ls commandsread_file: Read file contents after verificationshell_agent: Delegate complex file operations after path is confirmed