Collections:
Other Resources:
File Name with Relative Path or Absolute Path
Should I provide file name with Relative Path or Absolute Path?
✍: FYIcenter.com
When provide a file name, you have choice of using relative path
or absolute path:
1. If you provide a file name with an absolute path, the system will go to the directory of the given path to locate the file.
Providing an absolute path is a good practice for Windows system files or installed program files. Because those files are usually installed in fixed directories.
For example: "C:\windows\System32\cmd.exe" has the absolute path. The system will go to "\windows\System32" on drive C to find the file.
2. If you provide a file name with a relative path, the system will start from the current directory and follow the given path to reach the target directory to locate the file.
Providing a relative path is a good practice for a program to locate its supporting files like configuration files and library files, Because those files are usually installed together with the program in sub-directories.
For example, the following commands shows you how to run the java.exe program with a library file given in relative path name format "..\lib\plugin.jar":
C:\fyicenter>cd "\Program Files (x86)\Java\jre6\bin" C:\Program Files (x86)\Java\jre6\bin>java.exe -jar ..\lib\plugin.jar
⇒ File Name with or without File Extension
2022-08-30, ∼3334🔥, 1💬
Popular Posts:
What is the startup program "fsquirt - fsquirt.exe" on my Windows 8 computer? Can I remove it to spe...
What files are stored in the "C:\Users\<userid >\AppData\Local"folder? Can I delete th...
What is "IKE and AuthIP IPsec Keying Modules" in my Windows XP service list? And how is "IKE and Aut...
How to remove QLBCTRL.exe from startup program list? If you want to remove QLBCTRL.exe from the star...
What is "Net.Msmq Listener Adapter" in my Windows 7 service list? And how is "Net.Msmq Listener Adap...