Can't Delete A File (because it is in use)

I'm in the process of transferring a bunch of files from my iMac to an external HD. Last night, in the middle of transferring files, my computer suddenly and without warning shut off (a whole 'nother issue). The file transfer did not complete and I now have a grayed-out file folder that cannot be opened. When I try to drag it to the trashcan, or even right-click and select "Move to Trash", I get the following error: "The operation can’t be completed because the item “DSC_5594-Edit.psd” is in use." I've searched the Web for a solution but haven't come across anything that works. I've tried rebooting in normal mode, rebooting in safe mode, used " rm -rf " command in Terminal, and even downloaded "What's Keeping Me?" to find the process using the file, but the app wasn't able to find the file.
I'm hoping that somebody here will be able to help me with this perplexing situation before I pull out what little hair I have left!
Thanks!
 Chris

chattphotos wrote:
Did you use sudo rm -Rf on the problem folder?
What was the error when you tried rm -rf?
Yes, I tried with and without sudo;
Without sudo:
christophersimac:~ chris$ rm -rf /Volumes/Public/_Chris/Pictures\ 2/2013/08
rm: /Volumes/Public/_Chris/Pictures 2/2013/08/13/DSC_5594-Edit.psd: Resource busy
rm: /Volumes/Public/_Chris/Pictures 2/2013/08/13: Directory not empty
rm: /Volumes/Public/_Chris/Pictures 2/2013/08: Directory not empty
With sudo:
christophersimac:~ chris$ sudo rm -rf /Volumes/Public/_Chris/Pictures\ 2/2013/08 
WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.
To proceed, enter your password, or type Ctrl-C to abort.
Password:
rm: /Volumes/Public/_Chris/Pictures 2/2013/08/13/DSC_5594-Edit.psd: Resource busy
rm: /Volumes/Public/_Chris/Pictures 2/2013/08/13: Directory not empty
rm: /Volumes/Public/_Chris/Pictures 2/2013/08: Directory not empty

Similar Messages

  • OneNote recordings "We're sorry, we can't open the file because it is in use by another program."

    Constantly, OneNote breaks and screws up my recordings that are synced with my lectures. It is such a fragile process and very frustrating. As soon as I'm done recording, I press stop. When I test the recording, it says, "We're sorry, we can't open
    the file because it is in use by another program." I just recorded and then stopped it. If i close and reopen OneNote, it says, "oneNote is cleaning up from the last time it was open." And the recording still says it's in use by another program.
    I've even restarted the laptop and it still won't open. The only way i could salvage the file is if I copy and paste it into another folder, and then it will open through windows media player, but all the live syncing with my notes are gone. Where are these
    files stored? If I could save the sound and find the file/format that holds the syncing data again, I could work around this. They are no where to be found on my computer. Other forums give locations, but my folders are empty. Some other recordings work and
    sync nicely, but I have still lost many recordings to this error. However, if I play a file and then close it without stopping playback, that file, too, will now be unusable. It will be stuck as "We're sorry, we can't open..." no matter what i do
    and again i have to copy/paste it into a new folder and then move it back. I had the same problem on my last laptop. I record in Windows Media Audio 10 Professional at 192 kbs, 48 kHz, and stereo CBR. I need the high quality because the lecturer is too quiet.
    It seems to happen when I record long lectures, 45 min+. Shorter recordings tend to work fine.
    Please help, this would make note taking so much easier.

    A bit of a confusion on my part;
    Now we have created these REPORTS using Basic Crystal Report 10.5, which comes bundled with Visual Studio 2008 and .Net Framework 3.0. Now on our machines, we have never experienced any issues.
    Going by the above, you should have references to CR assemblies of version 10.5.3700 only. No other references.
    Now, looking at this paragraph:
    BUT on the DEV server (web server) which has .net Framework 3.0 and in its GAC its has CRYSTAL DLLs version 11.5 (required to create an Object of ReportClass and its related functions) ; sometimes we get the following error while exporting crystal report to pdf:
    I wonder what runtime was deployed to the server. E.g.; if you are using CR 10.5, your assemblies will be 10.5.3700 and you should be deploying the following runtime (depending on 32 bit / 64 bit, etc.):
    CRRedist2008_ia64.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100006255262008E/CRRedist2008_ia64.zip
    CRRedist2008_x64.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100006255272008E/CRRedist2008_x64.zip
    CRRedist2008_x86.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100009351342008E/CRBasicVS2008_redist_x86.zip
    One way to check on what is actually loading is to use the [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] utility.
    - Ludek

  • Can't delete some files because I get this error.

    It states that the file "could not be opened, because the original item cannot be found.
    I would like to delete it but I get that error message and won't let me do anything else.'
    PLEASE help!

    You stated that the error message you got states that the file "could not be opened, because the original item cannot be found. Is the name of this file in Italics? If so, it is an alias that points to the real file, and the real or original file cannot be found.
    You stated "I cannot even select the file. If I touch the file that message instantly pops up." What do you mean by "touching the file"? Do you mean clicking on it once which highlights it? Or double clicking on it?
    Just click on it & keep your mouse button depressed, then drag to trash.
    More on trash problems.
    How To Fix Stubborn Trash and Why it Won't Delete
    http://www.osxfaq.com/Tutorials/LearningCenter/HowTo/Trash/index.ws
    Downloaded Trash It! v3.6.1 from:
    http://www.macupdate.com/info.php/id/8214
     Cheers, Tom
     G4 AGP 400, G3 400 FW Pismo, OS X (10.4)   Mac OS X (10.3.9)   OS 9.2.2, DSL, Zip, Canon LiDE30 Scanner, CD-RW, Canon i960 Printer, Belkin UPS

  • Can I delete a file in my web folder using JSP/servlet?

    I want to delete some of the files in my website. How can I give file path. I have uploaded my website in US. Just by uploading a servlet /jsp I want to delete files in my directory.
    Is it possible to delete files using Servlert/jsp. What path should I give for the file name in jsp/servelet?

    It is possible. You can just specify the absolute file path in a File object and then invoke the delete() method. File file = new File("/path/file.ext");
    file.delete();See the File API [1] for details. Further on I think that you also want to know how to get the absolute file path for the given relative path. If so, it's available by ServletContext#getRealPath() [2]. To get for example the absolute root path, just query the relative root path "/":
    String rootPath = getServletContext().getRealPath("/");[1] http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html
    [2] http://java.sun.com/javaee/5/docs/api/javax/servlet/ServletContext.html

  • Creative Zen 8GB - Can't delete certain files (Write Protected it sa

    I have added a bunch of mp3s, images and videos to my player, but now when I try to delete some of these files I get a "you can't delete this file because it's write protected", if I check the properties of such files they are infact write protected but there's no way for me to uncheck the box and make them deletable.
    Anyone with the same problem or with a handy solution?
    P.S. I updated already to the latest firmware.

    Yes; I got my Zen this week and had the same problem when I copied over some MP3 files from a CD-ROM, which are write protected when the CD-ROM is created. I thought that the Zen was defecti've but now feel this is either a programmers misunderstanding of Windows Read Only functionality in the Zen -or- when you protect a file from deletion within the Zen, this is what the firmware sets to flag the file as 'Protected (I have not researched this yet).
    My Fix: For some of you this will not be the answer you are looking for but it works and will kept your Zen music file structure and library intact.
    You may need to switch to MTP mode in the creative software before you are allowed to use this technique. Search the forum where to find this checkbox. Otherwise your XP may be able to nati'vely open Explorer windows to the Zen.
    Setup: Open two Windows Explorer windows on your desktop. In one, create a new folder on a hard dri've that has enough space to handle all the music files on your Zen. In another Explorer window, navigate to the Zen music folder.
    1. Use Windows Explorer to copy ALL of your music files From the Zen to a new folder on your computer's hard dri've. If you don't have enough room on your hard dri've (and if not, why don't you? ) move files in stages.
    2. When the files are in your hard dri've's folder, right-click on the new folder and select Properties. Deselect (Uncheck) the Read Only attribute checkbox. If another dialog is displayed, select "Apply changes to this folder, subfolders and files" and click 'OK'. This will make all your files deletable on the Zen.
    3. Copy (drag) all the files back to your Zen, overwriting the original files.
    That's it. In the future perform step two before copying any files to the Zen.
    -Winged One

  • I can't delete my files on mac computer or empty trash because it keeps saying certain file is locked

    I can't delete my files on desktop. Also my trash won't empty because it says I have a locked file.
    Thanks Michelle

    Hi, first try holding option or alt key when selecting Empty Trash.
    Solving Trash Problems...
    http://thexlab.com/faqs/trash.html

  • I  can't delete raw files in bridge

    I can't delete raw files in bridge anymore. I used to and it worked. Now if I click delete button, nothing happens.

    Adobe doesn't support CS5, an when I spoke to Apple, I was told that this is a known issue with OS 10.8.5 and that they're working on a patch.  In the meantime I'm using Adobe's DNG as a workaround.
    Have not heard before of this Known Issue, also find it hard to believe being true. But can't test my self because I only have CS6 and CC installed and always use Photodownloader to convert to DNG upon import. I have just installed the 10.8.5 update and checked in Bridge CC pointing to an attached card reader. no problem in showing the CR2 thumbs, it works as always and as expected.
    To my knowledge Bridge CS5 is already 64 bits and I can't think of any valid reason why an OS update would cause this problem so suddenly (but I'm not a technician I have to confess…)
    However, I would first try a check and repair permissions from Apple Disk Utility and also try Cocktail (good and cheap 3th party maintenance application for Mac) to clear caches and check permissions.
    Also try a new user account just for testing to rule out your current account as the culprit.

  • An error occurred while opening the file, you can not open this file because it does not page???

    Dear all,
    i am test the report to show "No Data Found"  world, but, when i preview to PDF, i got  the message :An error occurred while opening the file, you can not open this file because it does not page.
    i try to load the other xml file that have data, and report work,no error.
    i don't know where is the problem, so i need some help....
    Thanks in advance for your response.
    my rtf report:
    <?call:header?>
    <?if:count(PLAN_CODE)>0?>
    <?for-each@section:G_PLAN_CODE?>
    <?template:Header?>
      <?for-each:G_PURPOSE?>
      <?end for-each?>
    <?end template?>
      <?for-each:G_PLAN_SUBSQL2?>
      <?end for-each?>
    <?end for-each?>
    <?end if?>
    <?if:count(PLAN_CODE)=0?>
    ====================No Data Found ===================
    <?end if?>
    about xml:
    if no data query back:
    <?xml version="1.0"?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <NARLGLR005>
      <LIST_G_PLAN_CODE></LIST_G_PLAN_CODE>
      <CF_START_DATE>102.3</CF_START_DATE>
      <CF_END_DATE>102.3</CF_END_DATE>
      <CF_TITLE_NAME>Company</CF_TITLE_NAME>
      <CF_OU_NAME>IT Department</CF_OU_NAME>
      <CF_SOURCE_CODE>N/A</CF_SOURCE_CODE>
      <CF_PRINT_DATE>102.11.18  15:48:10</CF_PRINT_DATE>
    </NARLGLR005>
    if have data:
    <?xml version="1.0"?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <NARLGLR005>
      <LIST_G_PLAN_CODE>
        <G_PLAN_CODE>
          <PLAN_CODE>03101C3003</PLAN_CODE>
          <PLAN_NAME>03101C3003_test</PLAN_NAME>
          <PLAN_EM>John</PLAN_EM>
          <PLAN_START_DATE>101.09.01</PLAN_START_DATE>
          <PLAN_END_DATE>102.08.31</PLAN_END_DATE>
          <PLAN_HOSTS>abc_super</PLAN_HOSTS>
          <LIST_G_PURPOSE>
            <G_PURPOSE>
              <PURPOSE_CODE>11600000</PURPOSE_CODE>
              <PURPOSE_NAME>Pre-Pay</PURPOSE_NAME>
              <LIST_G_PURPOSE_CODE>
                <G_PURPOSE_CODE>
                  <BUDGET_AMOUNT>0</BUDGET_AMOUNT>
                  <REAL_BUDGET_AMOUNT>0</REAL_BUDGET_AMOUNT>
                  <TEMP_RECEIPT_AMOUNT>0</TEMP_RECEIPT_AMOUNT>
                  <REAL_PAY_AMOUNT>0</REAL_PAY_AMOUNT>
                  <TEMP_PAY_AMOUNT>-83006</TEMP_PAY_AMOUNT>
                  <TEMP_PAY_FINAL_AMOUNT>83006</TEMP_PAY_FINAL_AMOUNT>
                  <TOTAL_AMOUNT>83006</TOTAL_AMOUNT>
                </G_PURPOSE_CODE>          
              </LIST_G_PURPOSE_CODE>
              <CS_BUDGET_AMOUNT>0</CS_BUDGET_AMOUNT>
              <CS_REAL_BUDGET_AMOUNT>0</CS_REAL_BUDGET_AMOUNT>
              <CS_TEMP_RECEIPT_AMOUNT>0</CS_TEMP_RECEIPT_AMOUNT>
              <CS_REAL_PAY_AMOUNT>0</CS_REAL_PAY_AMOUNT>
              <CS_TEMP_PAY_AMOUNT>0</CS_TEMP_PAY_AMOUNT>
              <CS_TEMP_PAY_FINAL_AMOUNT>0</CS_TEMP_PAY_FINAL_AMOUNT>
              <CS_TOTAL_AMOUNT>0</CS_TOTAL_AMOUNT>
            </G_PURPOSE>      
          </LIST_G_PURPOSE>
          <LIST_G_PLAN_SUBSQL2>
            <G_PLAN_SUBSQL2>
              <GL_DATE>31-07-12</GL_DATE>
              <NARL_DOC_NUMBER>0310107311004</NARL_DOC_NUMBER>
              <AP_UNAPP></AP_UNAPP>
              <PLAN_NAME1>03101C3003_101-102</PLAN_NAME1>
              <PLAN_CODE1>03101C3003</PLAN_CODE1>
              <PLAN_EM1>Elly</PLAN_EM1>
              <PLAN_START_DATE1>2012/09/01 00:00:00</PLAN_START_DATE1>
              <PLAN_END_DATE1>2013/08/31 00:00:00</PLAN_END_DATE1>
              <PLAN_HOSTS1>KIC-Supp</PLAN_HOSTS1>
              <REAL_RECEIPT_AMOUNT>0</REAL_RECEIPT_AMOUNT>
              <DESCRIPTION>101 year</DESCRIPTION>
              <CF_GL_DATE>101.7.31</CF_GL_DATE>
            </G_PLAN_SUBSQL2>
          </LIST_G_PLAN_SUBSQL2>   
          <CF_START_DATE1>99.1</CF_START_DATE1>
          <CF_END_DATE1>102.11</CF_END_DATE1>
          <CF_TITLE_NAME1>TCS Company</CF_TITLE_NAME1>
          <CF_OU_NAME1>IT Department</CF_OU_NAME1>
          <CF_SOURCE_CODE1>plan</CF_SOURCE_CODE1>
          <CF_PRINT_DATE1>102.11.19  17:12:19</CF_PRINT_DATE1>
          <CS_T_BUDGET_AMOUNT>517524</CS_T_BUDGET_AMOUNT>
          <CS_T_REAL_BUDGET_AMOUNT>517524</CS_T_REAL_BUDGET_AMOUNT>
          <CS_T_TEMP_RECEIPT_AMOUNT>289294</CS_T_TEMP_RECEIPT_AMOUNT>
          <CS_T_REAL_PAY_AMOUNT>289294</CS_T_REAL_PAY_AMOUNT>
          <CS_T_TEMP_PAY_AMOUNT>0</CS_T_TEMP_PAY_AMOUNT>
          <CS_T_TEMP_PAY_FINAL_AMOUNT>0</CS_T_TEMP_PAY_FINAL_AMOUNT>
          <CS_T_TOTAL_AMOUNT>228230</CS_T_TOTAL_AMOUNT>
          <CS_REAL_RECEIPT_AMOUNT>289294</CS_REAL_RECEIPT_AMOUNT>
        </G_PLAN_CODE>
      </LIST_G_PLAN_CODE>
      <CF_START_DATE>99.1</CF_START_DATE>
      <CF_END_DATE>102.11</CF_END_DATE>
      <CF_TITLE_NAME>Company</CF_TITLE_NAME>
      <CF_OU_NAME>IT Department</CF_OU_NAME>
      <CF_SOURCE_CODE>N/A</CF_SOURCE_CODE>
      <CF_PRINT_DATE>102.11.18  15:48:10</CF_PRINT_DATE>
    </NARLGLR005>

    Hi,
    You mentioned you tried some steps but I'm not sure what they are, you may try my suggestion to resolve this issue, follow these steps:
    Click Start, right-click Computer, click
    Properties, and then click Advanced system settings.
    On the Advanced tab, click Environment Variables.
    Locate and select the __COMPAT_LAYER variable, and then click Edit.
    Set the value of the __COMPAT_LAYER variable to EnableThemes. Or, delete the __COMPAT_LAYER variable.
    If the issue persists, we can troubleshoot this problem in Clean Boot to determine whether background programs are interfering with PowerPoint:
    http://support.microsoft.com/kb/929135
    Regards,
    Melon Chen
    TechNet Community Support

  • Itunes can't play the file because the original file can not be found

    There is many things wrong with that message and I don't know why.
    I had around 30 songs off an album on my computer
    I put the album on Itunes
    I edited them and then they played fine
    I put them on my ipod and then deleted them off coz i wanted to put something else on
    but i found out I had more space to put the other 30 songs I had from before back on so I went to the album
    when I wanted to play a song it said "Itunes Can't play the file because the original file can not be found"
    1) The original file was on my computer, in the exact place where I left it last time when Itunes played it
    2) I did not change the file path name
    3) I did not change the folder path name
    4) The songs aren't corrupted
    5) They play fine on other programs
    I deleted them all off and took them on again and they played fine but whey did they keep stuffing up before?

    The "missing file" thing happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then say no when asked to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions. I can provide a step by step guide if you give me the two paths.
    In some cases iTunes may be able to repair itself if you go through the same steps and locate the lost track. It may then offer to attempt to automatically fix other broken links. Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes.
    tt2

  • How can I delete a file from Adobe Acrobat Reader DC?

    How can I delete a file from Adobe Acrobat Reader DC?

    What operating system do you use? Where do you store the files?

  • How can I delete PDF files from my iMac desktop?

    How can I delete PDF files from my iMac desktop?

    Not on my system,When I try to dump if off in the trash it will not go. I get a message that says this file cannot be removed. I also tried going to File and clicking on Move to Trash. No dice.

  • How can I delete the files .DS_store in Mac OS Yosemite?

    How can I delete the files .DS_store in Mac OS Yosemite?

    The .DS_Store file is normal. It holds certain settings related to the folder it is found in. Removing these files is futile, as they will come back, as you have observed.
    If you are seeing them on your Mac, that means you have changed settings so that your Mac is showing invisible files in the Finder. To reverse that, run the following command in the Terminal:
    defaults write com.apple.finder AppleShowAllFiles NO
    This will hide them, and any other invisible files, from view.
    If you are seeing them on a Windows machine, just ignore them. They're not doing any harm.
    If you found a Terminal command that is supposed to stop them from being created, I would be extremely skeptical as to the wisdom of running it.

  • Time capsule intern.1TB hard drive.How can I delete all files

    Hello How can I delete all files from my timecapsule.
    I have connectet it with Wifi or ethernet. It is not possible.
    I have made a reset.
    I have tried it often.
    Please help
    Greetings from Vienna
    Pepimeier

    If you open Macintosh HD > Applications > Utiltiies > AirPort Utility and click Manual Setup, are you able to access the settings for the Time Capsule?
    Or, does AirPort Utility scan for the Time Capsule and then not find it?

  • Can i delete ALL files in directory ?

    i create a upload test using FileReference & PHP.
    In this scenario user upload files to http server.
    Now how can i delete all files in /files/uploads folder in AS3
    AS3 Code:
    req = new URLRequest();
    req.url = ( stage.loaderInfo.parameters.f )? stage.loaderInfo.parameters.f : "http://www.website.com/test/upload.php";
    uploadFile = new FileReference();
    select_btn.addEventListener( MouseEvent.CLICK, browse );
    uploadFile.addEventListener( Event.COMPLETE, complete_func );
    uploadFile.addEventListener( DataEvent.UPLOAD_COMPLETE_DATA, show_message );
    function browse( e:MouseEvent )
              filefilters = [new FileFilter('Images',"*.jpg;*.png;*.gif")];
              uploadFile.browse( filefilters );
    function complete_func( e:Event )
              trace( 'complete !' );
    function show_message(e:DataEvent)
    if (e.data == 'ok')
              label_txt.text = 'The file has been uploaded.';
    else if ( e.data == 'error')
              label_txt.text = 'The file could not be uploaded.';
    PHP Code:
    <?php
    $uploads_dir = './files/uploads';
    if( $_FILES['Filedata']['error'] == 0 ){
              if( move_uploaded_file( $_FILES['Filedata']['tmp_name'], $uploads_dir.$_FILES['Filedata']['name'] ) ){
                        echo 'ok';
                        exit();
    echo 'error';
    exit();
    ?>

    You need call another PHP file
    <?php
       $directory = './files/uploads';
       getDirectoryList ($directory);  
       //This function find all the files in the directory
       function getDirectoryList ($directory)
         // create an array to hold directory list
         $results = array();
         // create a handler for the directory
         $handler = opendir($directory);
         // open directory and walk through the filenames
         while ($file = readdir($handler)) {
           // if file isn't this directory or its parent, add it to the results
           if ($file != "." && $file != "..") {
        //$results[] = $file;
         // Delete Files
        $filename = $file;
      unlink($filename); //this delete a file
         // tidy up: close the handler
         closedir($handler);
    ?>

  • I can't delete a file in the Content-Management

    Hello,
    I can't delete a file in the Content-Management, altough I have full control.
    I get the following error message:
    System error (com.sapportals.wcm.repository.ResourceNotFoundException): null
    Many thanks for the help.

    Dear SAPMuffel ,
    As far as we can see the error "com.sapportals.wcm.repository.ResourceNotFoundException" is telling that the resource you are trying to delete could not be found, that is also to say, it might not exist any more.
    So please let me know exactly how you can reproduc this issue?
    and what kind of file it is? under what kind of KM repository? 
    Is there any other file under the same KM folder?
    Also you can reproduce the issue and then check the lastest defaulttrace file under this folder:
    ../j2ee/cluster/server0/log/defaultTrace.*.trc
    here you can find the detailed exception.
    Best Regards,
    Thunder

Maybe you are looking for

  • Wireless print server with Mac G4 and Dell PC's

    I have a belkin wireless router and a linksys WPS54G print server. Hardwired by ethernet cables to the router are two computers 1) Dell 2400 and 2) Apple G4. I am trying to get the Apple to print to the printserver. the linksys software set the Dell

  • How to handle spaces in using path to the file

    Hi Friends, I am getting error "file not found" if I give path of the file that contains spaces in it. (eg. C:\Users\Sample Project\file.txt) If I give path that doesn't contain spaces (eg. C:\Users\Sample\file.txt) then it works fine without any err

  • Can't find link to download E3000 firmware

    I'm sorry to bother you guys with what should be something so easy for me to do on my own, but for the life of me I can't find it in the Linksys Support site.  I installed DD-WRT firmware on my E3000, but I want to go back to the original Linksys fir

  • Iphoto 6 backup to dvd?

    I have passed the mark of putting in one dvd and clicking burn. Now it says it won't fit on one dvd, however when i deselect a couple of albums so it will fit....the burn zips done in one second and the disc is empty. Is there way to get it backed of

  • I need to download FireFox 13.0 to run a internet program. Where can I download FireFox 13.0?

    I am currently running Firefox 15.0 I need to install and run version 13.0. Where can I download this?