Saved File w/same name: Rescue old one?

Hello;
I'm an experienced user, can't believe I did this.
Saved a DVDSP file in same folder with FCP file. Used same file name. Wrote DVDSP file, lost FCP file. I know data is still there, but now name in directory points to DVDSP file. Any suggestions on recovering?
Thanks,
Josh

Hi John,
when you save a file with the exact same name it will overwrite the old file. Data are lost and cannot be recovered.

Similar Messages

  • My goal: "convert into pdf" -- the file is instantly saved with the same name as pdf. feasible?

    Good evening dear experts,
    i use Adobe Acrobat 9 pro extend to convert word, ppt, jepgs etc. into pdfs.
    No if i
    1) convert a ppt into a pdf: it asks --> "save as" --> converts --> opens the file
    2) convert a jpeg into a pdf: it instantly --> opens the file as pdf --> i need to save it manual under "save as"
    In both cases i want to
    my goal: "convert into pdf" --> the file is instantly saved with the same name as pdf
    WITHOUT asking me "save as" + "opening of the file".
    Is the possible, and if yes, HOW ?
    A fast answer is very very much appreciated, for i have to convert hundreds of files tonight in order to get it into 1 pdf
    Thx and greetings from Germany,
    Julia

    We are nearly there!
    A] - righclick "convert-to-method": @Bill: thx again, your approach worked for ppt, doc-files etc.
    2 problems:
    1) exception: for jpegs/bmps it doesn't work (the file is still opened after conversion, strange).
    2) the output-folder. it only accepts the standard "output-folder documents/*.pdf" (which is a step further but not my end-goal). If i choose another output-folder via "browse", this setting is NOT SAVED (even after clicking on "accept" + "ok").
    my goal: the the file should be automatically saved in THE SAME folder the original file is in (seems that can't be achieved and the standard folder is the only thing where to convert in?).
    Personal background for understanding: i have many folders with several ppts in it. Once i send it out to a customer, i always have to convert it into a pdf. thats why i want to save time (i know that i can convert it directly + send per mail, but i want an up-to-date copy of the pdf in the folder as well).
    B] - "the automated solution"- @Sandeep:
    i just watched your link http://tv.adobe.com/watch/acrobat-tips-and-tricks/automating-tasks-in-acrobat/
    about batch processing and i think its really helpful if i want to convert ALL of the files in one folder.
    1 question regarding this: are the subfolders also affected?
    As i understood from the video, i choose 1 "watched folder" and a "destination folder" (can be the same). E.g i have 1 big folder "designs" with many subfolders. I create a batch converting ppts to pdf to "the same folder" Once i run my batch, it converts ppts in the chosen folder "designs" + all subfolders into the same folder, right?
    If this is the case, i get too many pdfs, for i only need the latest ppt-version to be converted (copies of old ppts are also in the files) ;(.
    Do you have an idea how can i solve this?
    Now we are very near to the end-solution of my goal:
    i need this option "to the same folder" in my general settings when i convert a file via right-click. ATM it only works with the standard-folder documents/*.pdf
    In A], my files are now instantly saved with the same name in 1 specific folder. I would be completely happy, if this folder would be alwys the same as the one with the original file (and not 1 specific folder)
    2nd problem with a]: it does not apply to picture files (bmp, jpegs..)
    So if we could solve this, i would be a completely happy girl
    Guys, you are great, thx again for the whole struggle with my concerns!!

  • While saving multiple attachments from mail, files with same name are added and not replaced

    While saving Multiple Attachments from Mail, existing file with same name are not overwritted but new files are added in the folder.

    Bjørn Larsen a écrit:
    Hi all
    Hope to get some help with Elements Organizer.
    I have 12-15 years of digital photos that I now want to import into my newly aquirede Adobe Elements Organizer / Photoshop. Since my Nikon names the files with continous numbers from 0001 to 9999 I have multiple files with the same name although they are not alike at all. My previous software had no problems with that since I keep the photos in separate file folders based on import date. I generally import photos after each event and so name the folder with the date and some event info (e.g. 2014.12.24 - Christmas at grandparents).
    That is a common situation, I have the same limitation for files not going over 9999 on my Canons...
    Now - when I import my photos into Elements Organizer I get a lot of error messages with "same name exist .....) Hmmmmmmm
    Please sate the exact wording of the error message, I have never seen a message stating 'same name exist...' or equivalent; only messages about files already in the catalog. Files already in the catalog mean that some files have the same 'date taken' and file size in Kb.
    Any suggestions. I'm using a mac and tried to rename files based on date taken. The mac can do that but it takes ages to go into each folder and run the renaming script there.
    I also use a similar folder creation scheme (such a date naming is the default for the downloader). That way I never get a message about duplicates for the same file names.
    However - I can't be the first or only person with this problem so I figure that some workaround must be known out there. Maybe the import action can recognize date taken or - well. Thank you very much in advance if you can help me out here.
    You can alsways set the downloader to rename the imported files with a unique new name, there are many options in the 'advanced' dialog of the downloader. I don't know about Macs, but I don't thing there is a difference.

  • How to delete one existing file before uploading a file with same name?

    Hello everybody.
    I am uploading a file to Tomcat server. But, the problem is:
    i want to delete an existing file in the server, if i upload a fresh file with same name. In other words, "First check for the file with the same name in the server. If it exists, then delete existing file in the server and upload fresh one". If such file doesnot exist, then upload the file to server.
    I have given deleteonExit()
    but, for the first time when user is uploading, i want to check for the file with same name in the server.
    i am pasting the code here. please help:
    <!-- uploading the file -->
    <%
    String contentType = request.getContentType();
    if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
    DataInputStream in = new DataInputStream(request.getInputStream());
    int formDataLength = request.getContentLength();
    byte dataBytes[] = new byte[formDataLength];
    int byteRead = 0;
    int totalBytesRead = 0;
    while (totalBytesRead < formDataLength)
    byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
    totalBytesRead += byteRead;
    String contextRootPath = this.getServletContext().getRealPath("/");
    contextRootPath=contextRootPath.concat("uploaded");
    String file = new String(dataBytes);
    String saveFile = file.substring(file.indexOf("filename=\"") + 10);
    saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
    saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1,saveFile.indexOf("\""));
    // Create a directory; all ancestor directories must exist
    File outputFile = new File(contextRootPath, saveFile);
    var=outputFile.getPath();
    outputFile.createNewFile();
    int lastIndex = contentType.lastIndexOf("=");
    String boundary = contentType.substring(lastIndex + 1,contentType.length());
    int pos;
    pos = file.indexOf("filename=\"");
    pos = file.indexOf("\n", pos) + 1;
    pos = file.indexOf("\n", pos) + 1;
    pos = file.indexOf("\n", pos) + 1;
    int boundaryLocation = file.indexOf(boundary, pos) - 4;
    int startPos = ((file.substring(0, pos)).getBytes()).length;
    int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
    FileOutputStream fileOut = new FileOutputStream(outputFile);
    fileOut.write(dataBytes, startPos, (endPos - startPos));
    fileOut.flush();
    fileOut.close();
    outputFile.deleteOnExit();
    %>Please help. Thanks for taking time.
    Regards,
    Ashvini

    Thank you MartinHilpert,
    I have one more doubt,
    I am uploading the file to one folder called "uploaded". Before uploading a fresh file, i want to delete all existing files in that folder. IS that possible ?? If yes, can you please tell me how to do that ??
    Regards, Thanks for your time.
    Ashlvini

  • Is there any option to recover a file we saved with the same name that other by mistake in a MAC PC

    is there any option to recover a file we saved with the same name that other by mistake in a MAC PC

    There's a slim chance. +*Stop using the drive IMMEDIATELY.+*
    Then see: [Data Recovery|http://web.me.com/pondini/AppleTips/Recover.html].

  • New 4 Gen iPod--must I name it the same as my old one?

    I just received my new 4th gen. iPod, which is replacing my 2nd gen. iPod. I want to connect to iTunes (on a Mac) and (while holding my breath) transfer the contents of my old iPod to my new one. (I do realize that some apps that are not compatible with the new OS might not transfer.) My question is: Do I need to name my new iPod the same as my old one? I'm referring to the left-hand column in iTunes where, once you've connected, it shows whatever you've named your device, and, under all the tabs, all the contents of your device.
    Thanks for any responses and any advice at all about making this change. I've spent a great deal of time reading through this forum to be prepared for any potential situations that may come up in making this change.

    Not at all, you can name it anything you'd Like, it doesn't have to match.
    Message was edited by: biikman

  • Script to find files with same names with in a folder and it sub folders.

    Looking for script to find files with same names with in a folder and it sub folders.

    Are you just looking to find if any two files underneath a folder have the same name?
    If you just want to know that a file named "whatever" exists in two folders, that's not too difficult, but you probably want to know the full path names.
    Here's one attempt:
    $ perl -MFile::Find -le 'find(\&w, "."); while (($n,$p)=each %file) {if(@{$p}>1){print join(" ",@{$p})}} sub w{push @{$file{$_}},$File::Find::name;}'That will print the pathnames on the same line of any files with the same name that appear anywhere underneath your current directory.
    It's a bit long for a "one-liner", but functional.
    Darren

  • Merging Log Files with same name

    Hello,
    I have log files with same name 00000000.jdb (because created at different machines). I would like to merge data stored in these two files.
    I tried below approaches which do not work:
    1. rename one of the files -> doesn't work as file header has file name info which doesn't match with renamed value
    2. db dump/load -> dump and load works without error. (i have to dump Entity related Database and Format related Database -- from -l option) However when i try to read the file, it gives error.
    Exception in thread "main" com.sleepycat.je.EnvironmentFailureException: (JE 5.0.103) Catalog could not be refreshed, may indicate corruption, errorFormatId=52 nFormats=51, . UNEXPECTED_EXCEPTION: Unexpected internal Exception, may have side effects.
    I am using EntityStore and thus Annotated Entities.
    Does any one has any insights?
    Thanks.

    Yuvaraj,
    As you discovered, it is not possible to use .jdb files from one environment in a different environment.  The .jdb files use an internal format with relationships between files that form the Btree.
    I'm glad to hear you were able to use DbDump and DbLoad successfully.
    --mark

  • Applescript: Create a Folder from Files of Same Name but different Extension

    Hi guys,
    Racking my brain for the past 2 hours trying to figure out how to properly use Applescript but alas to no avail.
    My  problem is as follows.
    xxxxxxx.extension1
    xxxxxxx.extension2
    yyyyyyy.extension1
    yyyyyyy.extension2
    zzzzzzz.extension1
    zzzzzzz.extension2
    I've been trying to create an applescript that takes files of same name and create a folder with the name of those files grabbed.
    So ultimately it would look like
    xxxxxxx/
         xxxxxxx.extension1
         xxxxxxx.extension2
    yyyyyyy/
         yyyyyyy.extension1
         yyyyyyy.extension2
    zzzzzzz/
         zzzzzzz.extension1
         zzzzzzz.extension2
    Can some more more adept at this than me provide with a solution?  It would be great if I could use by just selecting the folder that contains all these files.
    Also can anyone suggest an beginner's book on Applescript?  I'm a bit or an order freak and Im sure applescripting could help me automate a lot of repetitive tasks Im currently doing.
    Thanks!

    This will do what you need.
    set source to (((path to desktop folder) as text) & "Test") as alias
    tell application "System Events"
                   set fnames to (name of every file of source)
    end tell
    set AppleScript's text item delimiters to "."
    repeat with fname in fnames
              try
                   set folderName to text item 1 of fname
                   if folderName is not "" then
                    tell application "Finder"
                      if not (exists (folder folderName of source)) then
                          make new folder at source with properties {name:folderName}
                      end if
                     move file fname of folder source to folder folderName of source
                 end tell
           end if
        end try
    end repeat
    (the code formatting here really s*?ks. select all the text in the box and right click and select services make new AppleScript to get it into the editor)
    It's not very polished so be careful, setup some test folders and make sure it does what you want before using it on your live data.
    You need to set the
    set source to
    line to the path of the folder where the files are. You can do that as an absolute path ie "Macintosh HD:Users:etc" or using the path to as in the example.
    It is also not very efficient and there are many different ways to attack this problem. If this is a one time thing this will be fine. If it will be an ongoing situation you might want to describe exactly what is happening and other ways to solve the problem might be possible.
    As for learning AppleScript start with the Apple Development Site, especially AppleScript Language Guide.
    There are lots of sites out there with good info MacScripter being one of the better ones.
    Book wise I really like Learn AppleScript by Apress. Its good as both a tutorial and reference and has a good intro to AppleScript Objective-C (a way Apple ahs setup to allow AppleScripts to access pure objective-c code and the OS X GUI).
    good luck

  • How can tell the script I want to save unsaved files but not replace the old one?

    Hi everyone
    I got this script
    var docs = app.documents; 
    for (var i = docs.length-1; i >= 0; i--) { 
        if (docs[i].saved == false) { 
            docs[i].save(new File(“~/Desktop/Document.indd”)); 
            docs[i].close(); 
        else { 
            docs[i].close(SaveOptions.YES); 
    close and save files
    but if I have two or more files, I want to save files like Doc1, Doc2...
    the new file will never replace the old one
    Can some one tell me how can I do that?
    Thanks
    Regard
    Teetan

    Hi,
    Change the 4th line like below:
            docs[i].save(new File("~/Desktop/Doc" + (i+1) + ".indd"));
    Vandy

  • AWS File or assembly name vjslib, or one of its dependencies, was not found

    Hi, were are currently having problems with the AWS, the job log is as follows:
    6/13/05 12:11:08- Starting to run operations (1 total) for job 'AWS Job'. Will stop on errors. (PID=2836)6/13/05 12:11:11- *** Job Operation #1 of 1: Authentication source (for synching users and groups) 'UU Authentication Source' [Run as owner 'Administrator']6/13/05 12:11:11- Creating the Everyone In Auth Source group (if one doesn't already exist).6/13/05 12:11:11- **********************************************************************************6/13/05 12:11:11- Sync Agent is processing groups.6/13/05 12:11:12- Authentication Synchronization Job's call to retrieve the groups on this auth source failed. Please check that the authentication source server is online.*** COM exception was: IDispatch error #19876 (0x80044fa4): [SOAP fault: faultcode='soap:Server' faultstring='Server was unable to process request. --> File or assembly name vjslib, or one of its dependencies, was not found.']6/13/05 12:11:12- *** Job Operation #1 failed: ProcessGroups failed (0x4)InitializeEvents();
    I have tried to reinstall J# as i understand that vjslib is a DLL which i am assuming is missing, this did not help, i have also removed J# completely from the automation server as the .net 1.1 framework includes this, but it is still not working, does anyone have any ideas?
    Thanks
    Phil.

    Hi, were are currently having problems with the AWS, the job log is as follows:
    6/13/05 12:11:08- Starting to run operations (1 total) for job 'AWS Job'. Will stop on errors. (PID=2836)6/13/05 12:11:11- *** Job Operation #1 of 1: Authentication source (for synching users and groups) 'UU Authentication Source' [Run as owner 'Administrator']6/13/05 12:11:11- Creating the Everyone In Auth Source group (if one doesn't already exist).6/13/05 12:11:11- **********************************************************************************6/13/05 12:11:11- Sync Agent is processing groups.6/13/05 12:11:12- Authentication Synchronization Job's call to retrieve the groups on this auth source failed. Please check that the authentication source server is online.*** COM exception was: IDispatch error #19876 (0x80044fa4): [SOAP fault: faultcode='soap:Server' faultstring='Server was unable to process request. --> File or assembly name vjslib, or one of its dependencies, was not found.']6/13/05 12:11:12- *** Job Operation #1 failed: ProcessGroups failed (0x4)InitializeEvents();
    I have tried to reinstall J# as i understand that vjslib is a DLL which i am assuming is missing, this did not help, i have also removed J# completely from the automation server as the .net 1.1 framework includes this, but it is still not working, does anyone have any ideas?
    Thanks
    Phil.

  • If you lose your phone and you get a replacement . does you imei number change? or do they keep it the same as your old one?

    if you lose your phone and you get a replacement . does you imei number change? or do they keep it the same as your old one?

    Hi
    Every handset has a unique series of identifiers, one of which is the IMEI number, so if you exchanged the handset (for example if it was not working & you were still under warranty) your new handset would have a new IMEI number.
    What Apple do though is if you formally exchange your handset (again, under warranty etc) then they record the change on their system, but also give you a sticker which is meant to attach to the original box. That way, if you come to sell the handset, you have a proper record of why the IMEI number on the handset is different from the IMEI number on the box.

  • Help - loading updated files with same name

    CS4
    When updating files with same name my CS4 automatically puts an extension _000
    I think it should ask me if I want to replace the existing file.  Is there a switch or setting that I need to change?
    Thanks.
    Alan

    Please find the solution in thread, http://forums.adobe.com/thread/707897?tstart=0.
    Hope this helps you.

  • Utility that makes jpg files with same name as avi file

    I would like to have my avi files catalogued in Photoshop elements 2.0 as I do with my photos - tagging etc.
    but I do not want to include the avi files in my photoshop catalogue since when backing all photos all clips would be included = to many GB ( I already back up the avis separately)
    So what I want is an easy way to automatically convert a frame from an avi file and save it with the same name as the avi.jpg - so I can import that to Phel and tag it.
    Any one who knows of such an utility?

    >So what I want is an easy way to automatically convert a frame from an avi file and save it with the same name as the avi.jpg - so I can import that to Phel and tag it.
    Jan,
    Are you aware that the Photoshop Elements Editor has a function that will create a still photo from a frame of a video? Look at File > Import > Frame from Video in the Editor workspace.
    And I think that Premiere Elements 2 may also have a function for capturing a single frame and saving as a photo file. (I don't have Prem Elem 2 available at the moment to verify that it is present in v2.) I believe that it was in Prem Elem 3 that I used this function.
    However, I don't think that either the Photoshop Elements or the Premiere Elements functions satisfy your request that it be automatic. I think that you would need to invoke that command for each video clip and then choose which frame of the video.

  • Photoshop cs4-snow leopard-automatically save files with same name.

    Does anyone know how to automatically update a file in another folder that has the same name as the current file? (photoshop cs4-snow leopard)

    Does this apply to all files you work on?
    How are the parallel files being defined – by location relative to the edited ones, filename, foldername, …?
    Will an index of the parallel files have to be written into the files’ metadata?
    And what’s behind this, why do you need multiple instances of the saved file, if I may ask?

Maybe you are looking for

  • Dreamweaver MX 2004 .....:::FOR SALE:::...

    Hi all, I was searching for Dreamweaver MX 2004 (i went for Dreamweaver MX 2004 because I am not a pro. designer and i didn't need Dreamweaver 8, was too expensive), but i could not find it. I am sure there are those who are out there looking like i

  • Files Are Not Transferring Correctly from Captivate 4 to 5

    My files from Captivate 4 are not transferring correctly into Captivate 5.  The images and quiz questions are not in the same place. Help!

  • PSE 11 Crashing

    I get this error message every time I startup the Editor. I have tried uninstalling and reinstalling the software. The same problem exits. I have tried the Control+alt+Shift when the Editor is starting up and that does not help either. I am running t

  • Link between invoice and KONP

    Hi all my friends there is a field KNUMH (condition record number) in KONP. I wanted to know how it is linked to billing document and connected through which field. ( I wanted to access the tax condition in a output which is stored in KONP through In

  • Delaying to get repair Nokia lumia 830 from servic...

    I buy Nokia Lumia 830 in Octomber 2015. I got problem in display so submit it to service centre. its near 3 weeks will complete but they are saying it will take time. its just matter of changing display. my job sheet no. 505504867/150131/018 Centre n