cmd와 powershell file directory 명령어 정리
많은 사람들이 cmd와 powershell에서의 file directory를 설정한는 것에 대해 헷갈려하고 잘 몰라서 이를 정리해보았다. (나도 개인적으로 많이 헷갈린다) 1. 파일로 이동하기 PS C:\Users\your user name> cd file1 PS C:\Users\your user name\file1> cd 명령어를 이용해 특정 파일로 이동할 수 있다 ※ 만약 폴더의 이름이 "my file"과 같이 띄어쓰기가 되어 있다면, 다음과 같이 하면 된다: PS C:\Users\your user name> cd "my file" PS C:\Users\your user name\my file> " "를 사용하여 띄어쓰기가 되어 있는 폴더의 이름을 사이에 넣어준다. 2. root directory로 ..