Windows 10: LOST.DIR problem

Discus and support LOST.DIR problem in Windows 10 Backup and Restore to solve the problem; About two years ago I did some recording of a show on a Sony Camcorder or on my android phone - my memory is too poor to remember which... I then took... Discussion in 'Windows 10 Backup and Restore' started by meridius, Dec 27, 2018.

  1. meridius Win User

    LOST.DIR problem


    About two years ago I did some recording of a show on a Sony Camcorder or on my android phone - my memory is too poor to remember which... I then took out the SD Card and put it into Windows XP and pulled out the USB too quickly. Unfortunately I was left with a LOST.DIR folder with one big file of 4GB plus and a collection of smaller ones mostly under 1GB (see screenshot attached).

    I copied these files to Windows, which has now been upgraded to Windows 10.

    I tested one of the smaller files with EaseUS Data Recovery and nothing changed i.e. the file name was recovered in the same name and format.

    I really don't know what to do now. Is there some free software that recovers files more than 4GB? EaseUS has a data limit and then asks you to pay but it couldn't recover the file (number 777820) in a new format (i.e. MP4) and just duplicated the same format I tested. The file size is 337,152 KB (337 MB).

    If there is free software that recovers files under 1GB that may also be a solution as I think, if it was recorded on it, the Sony Camcorder divides big files into smaller ones and perhaps I could piece them all together and recover the complete show.

    Many thanks for any advice.

    :)
     
    meridius, Dec 27, 2018
    #1

  2. dir Difficulties


    I am getting the hang of this command set.

    Maybe somebody know a work around that will list the three time stamps at one time.
    Theoretically dir /TC /TA /TW.
    dir will only show one of the three at one time.

    To me it seems that the only way to get all three on a line is to run loop with output to file, then boiling down the three outputs to one line. Clumsy but maybe the only way to get the job done?

    Thanks for any suggestions.
     
    mikeincousa, Dec 27, 2018
    #2
  3. Try3 Win User
    dir Difficulties


    Kari - We are both saying the same thing. Dir lists files and its lists can be sorted. Dir does not do anything to the files themselves but only to the lists it produces. Denis
     
  4. Kari Win User

    LOST.DIR problem

    dir Difficulties


    DIR uses whatever time definition you tell it to use. Following command would list all files and folders in X:\Downloads in order they have been created:

    dir X:\Downloads /t:c


    DIR is fully capable to sort files and folders. Following command would list all files in X:\Downloads, oldest first:

    dir X:\Downloads /o:d

    The minus sign before a parameter reverses the results, so the following command would list the same folder in reversed order, newest first:

    dir X:\Downloads /o:-d

    You can also combine switches. Following command would list all files and folders in X:\Downloads and all its subfolders (the /s switch), listing them in newest first based on time of file / folder creation:

    dir X:\Downloads /s /o:-d /t:c
     
Thema:

LOST.DIR problem

Loading...
  1. LOST.DIR problem - Similar Threads - LOST DIR problem

  2. DIR Command

    in Windows 10 Gaming
    DIR Command: dir /A:D /B /S > FolderList.txt produces a list of all directories and subdirectories of a directory. I would like to modify this line to have the date included for all directories and subdirectories of a directory too....
  3. DIR Command

    in Windows 10 Software and Apps
    DIR Command: dir /A:D /B /S > FolderList.txt produces a list of all directories and subdirectories of a directory. I would like to modify this line to have the date included for all directories and subdirectories of a directory too....
  4. Bug in the DIR command?

    in Windows 10 Network and Sharing
    Bug in the DIR command?: Hi all. I'm running Version 10.0.17134.1365 and recently I've been testing long file names and how they're handled in an application that I work on. Strangely I noticed that when I try to see what the short name is for one of these files, they're not displaying correctly....
  5. DIR commands

    in Windows 10 Ask Insider
    DIR commands: So recently I used the DIR commands to be able to see hidden and Invisible files, is there any way to revert this? submitted by /u/Creeper_King_558 [link] [comments] https://www.reddit.com/r/Windows10/comments/inyfq2/dir_commands/
  6. Lost Dir on Windows 10

    in Windows 10 Ask Insider
    Lost Dir on Windows 10: I believe I have a unique problem as I can find no information about it online and I'm not sure where else to post this. Late last year I had problems with performance on my gaming PC, I had eventually found out that one of my RAM sticks wasn't functioning, only because I...
  7. DIr Vexation / Alternates?

    in Windows 10 Support
    DIr Vexation / Alternates?: I want output all of the files in my document tree by Date Created, and have them format into a tight list in ascending chronological order The dir B switch gives me a nice tight list but I have not been able to figure out how to put it in oldest to newest order. Examples...
  8. Windows dir name

    in Windows 10 Installation and Upgrade
    Windows dir name: My computer will not start. My probing has revealed that Windows is "gone" Where it's supposed to be is a dir called"$WINDOWS.·-BT" I can't get the squiggly line to type. 1.what is the correct name of the Windows 10 directory? 2. How do I change it in the CMD prompt?...
  9. dir Difficulties

    in Windows 10 Support
    dir Difficulties: I am seeking to sort files with dir. Creation date and time is my most primary interest. This has been my primary guide. MS-DOS dir command help I have tried a number of these commands in Powershell and Admin Powershell The simple one element wild card ones work okay. Ex...
  10. matching wildcards in dir

    in Windows 10 Support
    matching wildcards in dir: In a folder I have several files starting with test, like test00, test0000, test1.txt, test1111, test 01.txt If I do a dir test0* I expect to get all files which match test0* like test00 and test0000 but I also get test 01.txt and I'm not sure why. I mean "test 01.txt"...