Wolfram: Navigate Directory
Show current dir
Directory[]
-
return current dir path. (like linux
pwd
)Directory[] (* c:\Users\xah\.emacs.d\temp *)
change dir
SetDirectory[]
-
set current dir to home dir. (like linux
cd
)home dir is the value of
$HomeDirectory
SetDirectory[path]
-
set current dir to path, and also automatically add to dir history represented by
DirectoryStack[]
.(like linux
cd
, and also auto dopushd
)
goto previous dir
ResetDirectory[]
-
set current dir to previous dir. (like linux
popd
)
show directory history
DirectoryStack[]
-
return a list of directories of previous current directories.
Wolfram. Shell Scripting Tasks
- Wolfram: Shell Scripting Tasks
- Wolfram: Navigate Directory
- Wolfram: List Files (Walk Directory)
- Wolfram: File Path Functions
- Wolfram: Delete Dir
- Wolfram: is File or Dir
- Wolfram: File Exist
- Wolfram: Get File Date
- Wolfram: Get File Size
- Wolfram: Print File Content
- Wolfram: Get File Hash
- Wolfram: Read File
- Wolfram: Read File from Web
- Wolfram: Write File
- Wolfram: Load a Package or File
- Wolfram: Get Environment Variable
- Wolfram: Date Time
- Wolfram: Find Replace Text 📜