<span style="font-family: Arial; font-size: 14px; line-height: 150%;"><div><span style="font-family:Arial;font-size:14px;line-height:150%;">Hello MIke,</span></div><div><span style="font-family:Arial;font-size:14px;line-height:150%;">I'm sorry to hear of your missing file.  You might try:</span></div><div><span style="font-family:Arial;font-size:14px;line-height:150%;">(1)  If you haven't already, search your trash, the path which might be something like:    <b>~/.local/share/Trash/files</b></span></div><div><span style="font-family:Arial;font-size:14px;line-height:150%;">(2)  Run the command:     <b>find ~ -iname '*string*'  </b>          # Where "string" is a piece of the name of your missing file.  You can use "globbing".</span></div><div><span style="font-family:Arial;font-size:14px;line-height:150%;">(3)  Or try:                         <b>find ~ -atime 2 || -ctime 2 </b>       # Any file accessed or changed within the last 2x24=48 hours</span></div><div><span style="font-family:Arial;font-size:14px;line-height:150%;">(4)  Or try:                        <b> </b></span><b>find ~ -ctime 2 -and -iname '*string*' </b>        # Etcetera, etcetera ...</div><div>(5)  Or, use some special software for recovering files which were removed with the command "rm".</div><div><br></div><div>good luck,</div><div>Doug.</div><div><br></div></span>