I could not find an answer for this unbearably simple question and so here it is:
I want to exclude a specific folder located on the desktop and I could not find an example that I could follow.
I know in the excludes file there is this example entry:
home/*/Desktop/*
which I am guessing is used to exclude the Desktop folder but I don't know what comes next.
Would it be, perhaps: home/*/Desktop/*/Folder/*
or would it be: home/*/Desktop/Folder/*
to exclude the folder I want to exclude? Is one of those the correct syntax? Or is it something else?
If it is correct, would anyone care to translate that so that I understand why?
snapshot excludes question [Solved]
Re: snapshot excludes question
The * on the end is a wildcard and means everything.
so..
home/*/Desktop/Folder/*
Means: everything in the folder named Folder which is inside the folder named Desktop
in the case above, the * before /Desktop means all users /Desktop/Folder
if you have multiple user profiles, then NONE of them would be backed up.
(and remember linux is case sensitive .)
if your wanting to exclude all files in that folder only in YOUR home folders, you should make sure to spell that out.
home/your_profile_name/Desktop/Folder/*
so..
home/*/Desktop/Folder/*
Means: everything in the folder named Folder which is inside the folder named Desktop
in the case above, the * before /Desktop means all users /Desktop/Folder
if you have multiple user profiles, then NONE of them would be backed up.
(and remember linux is case sensitive .)
if your wanting to exclude all files in that folder only in YOUR home folders, you should make sure to spell that out.
home/your_profile_name/Desktop/Folder/*
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!
Re: snapshot excludes question
That is very helpful, thankyou! :-)
The thing that confused me and that led me to first suggest using this:
home/*/Desktop/*/Folder/*
instead of what you sugggested, namely this:
home/*/Desktop/Folder/*
was entries like this in the excludes file:
home/*/.cache/mozilla/firefox/*/cache2/*
but if I understand you correctly, that would mean excluding everything inside of cache2, in the specified location that is specified by the path?
The thing that confused me and that led me to first suggest using this:
home/*/Desktop/*/Folder/*
instead of what you sugggested, namely this:
home/*/Desktop/Folder/*
was entries like this in the excludes file:
home/*/.cache/mozilla/firefox/*/cache2/*
but if I understand you correctly, that would mean excluding everything inside of cache2, in the specified location that is specified by the path?
Re: snapshot excludes question [Solved]
Thankyou for that! :-)