https://github.com/nperovic/selectfile
List the files in a specified folder and return the path of the file chosen by the user.
https://github.com/nperovic/selectfile
Last synced: about 2 months ago
JSON representation
List the files in a specified folder and return the path of the file chosen by the user.
- Host: GitHub
- URL: https://github.com/nperovic/selectfile
- Owner: nperovic
- Created: 2023-11-28T00:07:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-28T06:06:59.000Z (over 1 year ago)
- Last Synced: 2025-02-02T03:27:51.005Z (4 months ago)
- Language: AutoHotkey
- Size: 16.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SelectFile
List the files in a specified folder and return the path of the file chosen by the user.This is not like the system's default file selection dialog box. Users **"cannot"** navigate to other folders in this dialog box.
## Example
Show all the files with `.ahk` extension in the script folder, and return the one chosen by the user.
```
selectedFile := SelectFile(A_ScriptDir, "ahk")
MsgBox(selectedFile)
```