NOTICE
I tried to find the answer of it. but searching for difference ./ and .\
did result nothing
Instead of answering on this question, it'd be also helpful that you let me know how to search for this subject
Question
- What is different
./
and.\
?
Description
- while using
Command Prompt
I found that file locations sometimes can be written from./
- ex)
mspaint ./Apple.png
- ex)
- and the locations that use
./
can be replaced by.\
- ex) results of using
mspaint ./Apple.png
andmspaint .\Apple.png
are the same
- ex) results of using
- in inverse case, it cannot
- ex)
.\mspaint.exe
→ it works well - ex)
./mspaint.exe
→ error with'.' is not recognized as an internal ... batch file
- ex)