The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    I was trying out the cmd ability to merge videos together but forgot to type a destination for the merged video

    Discussion in 'Windows OS and Software' started by Freelancer332, Aug 1, 2008.

  1. Freelancer332

    Freelancer332 Notebook Evangelist

    Reputations:
    40
    Messages:
    409
    Likes Received:
    0
    Trophy Points:
    30
    I was using this format:

    copy /B "C:\vid1.mpg"+ "C:\vid2.mpg" "C:\completevid.mpg"

    except I accidentally forgot the " C:\completevid.mpg" part so now I don't know where the file went...or did it not even get created because it wasn't directed onto the hard drive?

    If it did get created, how do I get rid of it?

    Thanks,
    Freelancer
     
  2. stewie

    stewie What the deuce?

    Reputations:
    3,666
    Messages:
    2,174
    Likes Received:
    0
    Trophy Points:
    55
    Do a search with *.mpg as file name and sort by Date Created.

    :)
     
  3. Freelancer332

    Freelancer332 Notebook Evangelist

    Reputations:
    40
    Messages:
    409
    Likes Received:
    0
    Trophy Points:
    30
    Nothing shows up in the search.
    I don't think it was created since....it wasn't specified to be created on the hard drive and there's no where else.. >_<
     
  4. stewie

    stewie What the deuce?

    Reputations:
    3,666
    Messages:
    2,174
    Likes Received:
    0
    Trophy Points:
    55
    If no new file showed up when you do a search of *.mpg, then it's not created. If you want to be 100% sure, do a search on *.* and sort by Date Created and look at the Size, you will easily see if there is any temp file created from that. But I don't think the file is created.
     
  5. flipfire

    flipfire Moderately Boss

    Reputations:
    6,156
    Messages:
    11,214
    Likes Received:
    68
    Trophy Points:
    466
    It didnt get created because you didnt give it an output location or filename.
     
  6. swarmer

    swarmer beep beep

    Reputations:
    2,071
    Messages:
    5,234
    Likes Received:
    0
    Trophy Points:
    205
    Well I did a simple experiment:

    Code:
    C:\Users\nick\scratch\test>dir
     Volume in drive C is OS
     Volume Serial Number is 2865-1E83
    
     Directory of C:\Users\nick\scratch\test
    
    08/01/2008  11:59 AM    DIR          .
    08/01/2008  11:59 AM    DIR          ..
                   0 File(s)              0 bytes
                   2 Dir(s)  17,909,608,448 bytes free
    
    C:\Users\nick\scratch\test>echo 123 > test1.txt
    
    C:\Users\nick\scratch\test>echo abc > test2.txt
    
    C:\Users\nick\scratch\test>dir
     Volume in drive C is OS
     Volume Serial Number is 2865-1E83
    
     Directory of C:\Users\nick\scratch\test
    
    08/01/2008  11:59 AM    DIR          .
    08/01/2008  11:59 AM    DIR          ..
    08/01/2008  11:59 AM                 6 test1.txt
    08/01/2008  11:59 AM                 6 test2.txt
                   2 File(s)             12 bytes
                   2 Dir(s)  17,909,460,992 bytes free
    
    C:\Users\nick\scratch\test>type test1.txt
    123
    
    C:\Users\nick\scratch\test>type test2.txt
    abc
    
    C:\Users\nick\scratch\test>copy /B "test1.txt"+ "test2.txt"
    test1.txt
    test2.txt
            1 file(s) copied.
    
    C:\Users\nick\scratch\test>dir
     Volume in drive C is OS
     Volume Serial Number is 2865-1E83
    
     Directory of C:\Users\nick\scratch\test
    
    08/01/2008  11:59 AM    DIR          .
    08/01/2008  11:59 AM    DIR          ..
    08/01/2008  11:59 AM                12 test1.txt
    08/01/2008  11:59 AM                 6 test2.txt
                   2 File(s)             18 bytes
                   2 Dir(s)  17,909,387,264 bytes free
    
    C:\Users\nick\scratch\test>type test1.txt
    123
    abc
    
    C:\Users\nick\scratch\test>type test2.txt
    abc
    
    So... looking at that... can you tell where it put the merged file?

    btw... I didn't know you could merge files like that with the copy command... thanks for the tip. ;)