Jump to content

Hello everyone,

 

Since I don't have enough money at the moment to buy some HDDs or a NAS to backup my stuff, I am looking for a way to make a list of all the files on my hard drive.

 

I don't need any files saved just a text document list of all the files that were on there.

 

Is this possible? If so what program would you recommend?

 

Thanks in advance,

Link to comment
https://linustechtips.com/topic/470890-text-file-list-all-files/
Share on other sites

Link to post
Share on other sites

Hello everyone,

 

Since I don't have enough money at the moment to buy some HDDs or a NAS to backup my stuff, I am looking for a way to make a list of all the files on my hard drive.

 

I don't need any files saved just a text document list of all the files that were on there.

 

Is this possible? If so what program would you recommend?

 

Thanks in advance,

open powershell,

run 'Get-ChildItem -Path c:\ -Recurse | Out-File -FilePath C:\temp\filelist.txt'

???

Profit

Link to comment
https://linustechtips.com/topic/470890-text-file-list-all-files/#findComment-6319223
Share on other sites

Link to post
Share on other sites

open powershell,

run 'Get-ChildItem -Path c:\ -Recurse | Out-File -FilePath C:\temp\filelist.txt'

???

Profit

 

Works great except when I try and do the out-file part it always says access denied or path is invalid.

Link to comment
https://linustechtips.com/topic/470890-text-file-list-all-files/#findComment-6321256
Share on other sites

Link to post
Share on other sites

Works great except when I try and do the out-file part it always says access denied or path is invalid.

Make sure you have permissions to read/write to the temp folder, also make sure your running powershell as an admin (should say administrator at the top of the window).

Link to comment
https://linustechtips.com/topic/470890-text-file-list-all-files/#findComment-6325875
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×