mv 명령 후에 폴더를 찾을 수 없습니다

mv 명령 후에 폴더를 찾을 수 없습니다

저는 백엔드를 개발 중이었고 전체 애플리케이션에 대한 git 저장소를 만들기로 결정했습니다. 내 홈 디렉터리에 복제한 후의 명령 목록은 다음과 같습니다.

~$ mv PartySpotBackend /PartySpot
mv: cannot move 'PartySpotBackend' to '/PartySpot': Permission denied
~$ sudo !!
sudo mv PartySpotBackend /PartySpot
~$ ls
node_modules PartySpot tmp
~$ cd PartySpot/
~/PartySpot$ ls
LICENCE README.md
~/PartySpot$ ls -a
. .. .git .gitignore LICENCE README.md

전체 PartySpotBackend/디렉토리가 사라진 것 같습니다. 복구하거나 찾을 수 있는 방법이 있나요? 이것은 우분투 서버에 있습니다.

답변1

디렉토리를 가 아닌 /as 로 이동했습니다 ./PartySpot~/PartySpot

당신은 홈 디렉토리에 있습니다 ~. 즉, 파일을 보낼 때 홈 디렉토리의 디렉토리 가 아닌 (루트 디렉토리 아래 ) /home/$USER/로 파일을 보냈습니다 ./PartySpot/~/PartySpot

을 사용하면 sudo mv PartySpotBackend /PartySpot대상이 절대 경로 /PartySpot로 시작됩니다./

즉, 살펴보십시오 /PartySpot.

관련 정보