How to delete 1 file from CD?

If I only want to delete one file from a cd that contains many files, how do I do this? I don't want to erase the whole cd!

1. find 700 MB of free space somewhere, you have it i'm sure. if not back-up & delete old stuff...
2. copy the whole CD to there
3. delete that one file
4. burn a new CD (this is the one step i'm not sure you're able to do locally - hence your question. or?)
5. allow burn to verify. then test it as mounted.
6. if o.k., use sturdy scissors and cut the previous CD in half. or use s'th sharp and dig into the data side...
i'm partial to the cutting in half approach. apparently putting a CD into a microwave destroys it too, and i hear the process results in interesting visual effects, but if you go that route i suggest you do this in someone else's microwave and from a safe distance...
cheers

Similar Messages

  • HOW TO DELETE FILES FROM ADOBE READER IF THEY ARE UNNECESSARY

    HOW TO DELETE FILES FROM ADOBE READER IF THEY ARE UNNECESSARY

    Hi,
    You might need to sign up at https://cloud.acrobat.com/ and choose 'Files' tab where you can find all the files.
    Select all the files you want to remove and choose 'Delete' option.
    Regards,
    Anubha

  • HOw to delete files from remote server?

    Hi,
    I want to delete files from a directory on remote server.
    I use the following command to delete on current server:
    find $srcdir -mtime +90 -name "COR*.txt" -exec rm -f {} \;
    Now, how can I delete files from remote server ?
    Thanks!
    Yogini

    Some possible options:
    1. There exists SSH implementation for Windows.
    2. You can make a workaround. You can setup share for specific/wanted directory.
    Then you can mount it on Linux machine and execute command localy and delete files "localy" in mounted directory.
    3. You can setup FTP server on Windows machine and do that remotely via FTP commands.

  • How to delete file from Window server

    Hi
    Can anybody tell me that Is there any function module for deleting file from presentation server like C directory.
    Quick suggestion will highly be appreciated!!!!!!!

    Try this:
    CALL METHOD cl_gui_frontend_services=>file_delete
      EXPORTING
        filename             =
      changing
        rc                   =
    EXCEPTIONS
       FILE_DELETE_FAILED   = 1
       CNTL_ERROR           = 2
       ERROR_NO_GUI         = 3
       FILE_NOT_FOUND       = 4
       ACCESS_DENIED        = 5
       UNKNOWN_ERROR        = 6
       NOT_SUPPORTED_BY_GUI = 7
       WRONG_PARAMETER      = 8
       others               = 9
    this is pretty gud approach .
    Message was edited by:
            Nishant Rustagi

  • How to delete files from start up disk

    Please help. After my macbook air is on for 2-5 mins, it comes up with I need to delete files from my start up disk. I went into start up disk and the only thing in there is the OS X system. So, then a small box appears. and tells me my memory is full and that I need to force quit applications. Sometimes the only application that is on it is finder. At this point the macbook air then freezes and I have to turn it off holding the button down. When I go to turn it back on it will often not turn back on. This laptop is only 11months old and running the new OS X system (mountain Lion) that just came out.

    Use Grandperspective to visually map all files:
    http://www.macupdate.com/app/mac/19515/grandperspective
    Also check this page about clearing drop box cache on your Mac:
    https://www.dropbox.com/help/328/en

  • How to delete files from an attached camera after downloading?

    New to Aperture 2. I am sure to have a lot of exploring to do but for now I am looking for a way to delete files from an attached camera after downloading like you can with iPhoto. Is this possible?

    While I might be a bit paranoid, I prefer to format in the camera after verifying that the import came out OK. It is a small price to pay to make sure that my images are actually on the computer. I don't do anything fancy, just make sure that the thumbnails come up correctly, and maybe perform an edit.
    While it was not my images, thank goodness, I did get bit in a similar fashion. I use a "watch fob" style GPS unit for Geocoding. I have hoodahgeo configured to delete my tracks after import. Well, after one session I forgot to update my images with the gps information. As you can guess, when I re-opened HoodahGeo to try and re-geotag, the tracks were gone, so I was out of luck.

  • How to delete file from client machine

    Hi all,
    we are using the DataBase: oracle:10g,
    and forms/reports 10g(developer suite 10g-10.1.2.2).
    can anybody help me how to delete the file from client machine in specified location using webutil or any
    (i tried with webutil_host & client_host but it is working for application server only)
    thank you.

    hi
    check this not tested.
    PROCEDURE OPEN_FILE (V_ID_DOC IN VARCHAR2)
    IS
    -- Open a stored document --
    LC$Cmd Varchar2(1280) ;
    LC$Nom Varchar2(1000) ;
    LC$Fic Varchar2(1280);
    LC$Path Varchar2(1280);
    LC$Sep Varchar2(1) ;
    LN$But Pls_Integer ;
    LB$Ok Boolean ;
    -- Current Process ID --
    ret WEBUTIL_HOST.PROCESS_ID ;
    V_FICHERO VARCHAR2(500);
    COMILLA VARCHAR2(4) := '''';
    BOTON NUMBER;
    MODO VARCHAR2(50);
    URL VARCHAR2(500);
    Begin
    V_FICHERO := V_ID_DOC;
    LC$Sep := '\';--WEBUTIL_FILE.Get_File_Separator ; -- 10g
    LC$Nom := V_FICHERO;--Substr( V_FICHERO, instr( V_FICHERO, LC$Sep, -1 ) + 1, 100 ) ;
    --LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
    LC$Path := 'C:';
    LC$Fic := LC$Path || LC$Sep || LC$Nom ;
    If Not webutil_file_transfer.DB_To_Client
    LC$Fic,
    'TABLE_NAME',
    'ITEM_NAME',
    'WHERE'
    ) Then
    Raise Form_trigger_Failure ;
    End if ;
    LC$Cmd := 'cmd /c start "" /MAX /WAIT "' || LC$Fic || '"' ;
    Ret := WEBUTIL_HOST.blocking( LC$Cmd ) ;
    LN$But := WEBUTIL_HOST.Get_return_Code( Ret ) ;
    If LN$But 0 Then
    Set_Alert_Property( 'ALER_STOP_1', TITLE, 'Host() command' ) ;
    Set_Alert_Property( 'ALER_STOP_1', ALERT_MESSAGE_TEXT, 'Host() command error : ' || To_Char( LN$But ) ) ;
    LN$But := Show_Alert( 'ALER_STOP_1' ) ;
    LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    Raise Form_Trigger_Failure ;
    End if ;
    If Not webutil_file_transfer.Client_To_DB
    LC$Fic,
    'TABLE_NAME',
    'ITEM_NAME',
    'WHERE'
    ) Then
    NULL;
    Else
    Commit ;
    End if ;
    LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    Exception
    When Form_Trigger_Failure Then
    Raise ;
    End ;sarah

  • How to delete file from application server(Unix)

    Hi All,
    Using the below code downloading a file from application server(Unix) to client machine. I want to delete the file from application server once it is downloaded to client
    We work on Forms 11.1.1.4.0 and Oracle DB 10g. Client machine are Windows 7.
    BEGIN
      IF webutil_file_transfer.AS_to_Client
      (clientFile => Name_In('global.g_file_name')
      ,serverFile => ls_AppServer_Loc)THEN
      message('Data exported Successfully');
      ELSE
       message('File download from Application Server failed');
      END IF;
    EXCEPTION
      WHEN OTHERS THEN
      message('File download failed: '||SUBSTR(sqlerrm,1,200));
      END;
    I have search for solution on OTN. Few suggested to use HOST.
    Can any one help me how to use Host() built_in to delete the file.
    Thanks,
    Maddy

    Can any one help me how to use Host() built_in to delete the file.
    Host('/bin/rm <complete file path>');

  • How to delete file from column after upload with messageFileUpload?

    Which is the way to delete a file from column i have uploaded with messageFileUpload. After uploading the system generates a link to download the file. But how i can delete the file?

    Thank you! Syncing has always scared me...basically I am just afraid to lose any photos. But it worked. Again thank you

  • How to delete files from external ntfs hard disk [Solved]

    Hi guys
    first, sorry for my bad English.
    I have an external hard disk ( WD 500GB ) with ntfs file system and i have installed ntfs-3g package.
    3 days ago, when i wanted to delete some files, i get a problem with it,
    look the output :
    [jahangir@Arch New Metal]$ sudo rm *
    [sudo] password for jahangir:
    rm: cannot remove '02 - Korn - Love and Meth.mp3': No such file or directory
    rm: cannot remove '30Seconds To Mars': No such file or directory
    rm: cannot remove '30Seconds To Mars 1': Is a directory
    rm: cannot remove 'Avantasia': No such file or directory
    rm: cannot remove 'Avantasia 1': Is a directory
    rm: cannot remove 'Avantasia 2': Is a directory
    rm: cannot remove 'Behemoth': No such file or directory
    rm: cannot remove 'Behemoth 1': Is a directory
    rm: cannot remove 'Hanging Garden - At Every Door - 2013': No such file or directory
    rm: cannot remove 'Hanging Garden - At Every Door - 2014': No such file or directory
    rm: cannot remove 'Rosetta': No such file or directory
    rm: cannot remove 'Rosetta 1': No such file or directory
    rm: cannot remove 'Sepultura': No such file or directory
    rm: cannot remove 'Sepultura 1': No such file or directory
    rm: cannot remove 'Slipknot': No such file or directory
    rm: cannot remove 'Slipknot 1': No such file or directory
    rm: cannot remove 'Tokio Hotel': No such file or directory
    rm: cannot remove 'Tokio Hotel 1': No such file or directory
    rm: cannot remove 'T\303\275r': No such file or directory
    rm: cannot remove 'neww': No such file or directory
    [jahangir@Arch New Metal]$
    Who can help me ?
    I wanted to delete .trash-1000 file from my main directory hard dist and i confront with this error :
    [jahangir@Arch My Passport]$ sudo rm .Trash-1000
    [sudo] password for jahangir:
    rm: cannot remove '.Trash-1000': No such file or directory
    [jahangir@Arch My Passport]$
    In the event that it is there.
    also in main directory of my hard disk i have 1 mp3 file that i can't view it in file manager and it will be displayed in Windows OS and with ls command in terminal :
    [jahangir@Arch My Passport]$ ls
    ls: cannot access 01 - Lost.mp3: No such file or directory
    ls: cannot access 02 - Surrendered To The Decadence.mp3: No such file or directory
    01 - Lost.mp3 In The Name Of God Videos ZzZ - IMAN winold
    02 - Surrendered To The Decadence.mp3 New Metal World of Warcraft Cataclysm 4.3.4 enGB navid wow wrath
    [jahangir@Arch My Passport]$
    what is this file and how can i delete .Trash-1000 and this files and content of "New Metal" directory ?
    Last edited by jiros (2013-12-23 20:57:05)

    I believe you used ntfs for a reason. As far as I know, Windows isn't friendly with hdd filesystems others than fat or ntfs, so once you format your external harddrive to ext4, windows won't talk to it at all, unless you install some additional driver or software.
    You have several possibilities to do:
    1) You could use FAT32, it's kind of a dumb filesystem, linux, mac and windows can read and write to it, there are some limitations like file permisions or 4GB file size limit.
    2) You could make multiple partitions on your external harddrive, one with ntfs (for windows) and the other with some fs that is support natively in Linux and Mac, I believe only option would be HFS+. I'm not an expert, maybe somebody will correct me. Anyway, if you aren't going to connect your disk to Mac, than ext4 would be a good choice. But this approach with two different partions is kind of dumb, because usually you need the same data available on whatever platform.
    3) If I were you, I would continue using NTFS or FAT32. It's not ideal, but it's a price you have to pay for dealing with Windows systems.
    4) If there is any other smarter solution, I believe somebody will add it to responses bellow.
    Anyway, it's weird that your problem persists. There has to be something wrong with your filesystem, otherwise ls wouldn't show you question marks in its output. Did you perform chkdisk via GUI? It has to say that either there wasn't any error with your fs, or that there was some error. We live (unfortunatelly) in binary computer world. I mean you can perform that command from shell, or however microsoft calls it, and if you run it in a proper configuration, it will tell you whether your fs is bad or not and perform needed repairs.
    And how to format disk to ext4?
    Backup your data, run as root fdisk /dev/yourexthdd (fdisk /dev/sdd), delete all partitions, create new ones, once you are done, write changes down. fdisk is pretty easy to use, don't be afraid of it. Then you have to create filesystem on each partition you created with fdisk, so if you created only one, run mkfs.ext4 /dev/yourexthddwithpartnumber (mkfs.ext4 /dev/sdd1). There are nice articles about doing these things on Arch Wiki (https://wiki.archlinux.org/index.php/File_Systems), don't be worried to read them

  • How to delete  File from the Application Server,ABAP

    Hi Gurus,
    I'm using  DELETE  DATASET  Statement ,
    Based on Date  how can i delete files with in the period in the Application server
    Any BAPI/FM  for this Delete file based  on some Date Period
    Thanks in Advance.

    DATA: BEGIN OF file,
            dirname(75) TYPE c, " name of directory. (possibly truncated.)
            name(75)    TYPE c, " name of entry. (possibly truncated.)
            type(10)    TYPE c,            " type of entry.
            len(8)      TYPE p,            " length in bytes.
            owner(8)    TYPE c,            " owner of the entry.
            mtime(6)    TYPE p, " last modification date, seconds since 1970
            mode(9)     TYPE c, " like "rwx-r-x--x": protection mode.
            useable(1)  TYPE c,
            subrc(4)    TYPE c,
            errno(3)    TYPE c,
            errmsg(40)  TYPE c,
            mod_date    TYPE d,
            mod_time(8) TYPE c,            " hh:mm:ss
            seen(1)     TYPE c,
            changed(1)  TYPE c,
          END OF file.
    DATA: BEGIN OF file_list OCCURS 100,
            dirname(75) TYPE c, " name of directory. (possibly truncated.)
            name(75)    TYPE c, " name of entry. (possibly truncated.)
            type(10)    TYPE c,            " type of entry.
            len(8)      TYPE p,            " length in bytes.
            owner(8)    TYPE c,            " owner of the entry.
            mtime(6)    TYPE p, " last modification date, seconds since 1970
            mode(9)     TYPE c, " like "rwx-r-x--x": protection mode.
            useable(1)  TYPE c,
            subrc(4)    TYPE c,
            errno(3)    TYPE c,
            errmsg(40)  TYPE c,
            mod_date    TYPE d,
            mod_time(8) TYPE c,            " hh:mm:ss
            seen(1)     TYPE c,
            changed(1)  TYPE c,
          END OF file_list.
      DO.
        CLEAR file.                           
        CALL 'C_DIR_READ_NEXT'
          ID 'TYPE'   FIELD file-type
          ID 'NAME'   FIELD file-name
          ID 'LEN'    FIELD file-len
          ID 'OWNER'  FIELD file-owner
          ID 'MTIME'  FIELD file-mtime
          ID 'MODE'   FIELD file-mode
          ID 'ERRNO'  FIELD file-errno
          ID 'ERRMSG' FIELD file-errmsg.
       if sy-subrc eq 0.
          MOVE-CORRESPONDING file TO file_list.
          APPEND file_list.
       else.
          exit.
       endif.
    enddo.
    sort file_list based on date and time ie, MOD_DATE and MOD_TIME fields
    and delete the entries

  • How to delete files from JAR ?

    Hi,
    Is there any way to delete a file from the jar ?
    I just want to delete some class files from the jar without deleting and again uploading the JAR.
    Thanks & Regards,
    Atur Shah

    You can automate this using the following example:
    echo Remove xalan from runtime
    echo .
    echo JAVA_HOME: %JAVA_HOME%
    echo .
    rmdir /s /q %TEMP%\rt
    mkdir %TEMP%\rt
    pushd %TEMP%\rt
    %JAVA_HOME%\bin\jar -xf %JAVA_HOME%\jre\lib\rt.jar
    rmdir /s /q org\apache\xml
    rmdir /s /q org\apache\xalan
    rmdir /s /q org\apache\xpath
    %JAVA_HOME%\bin\jar -cf ..\rt.jar *
    copy %JAVA_HOME%\jre\lib\rt.jar %JAVA_HOME%\jre\lib\rt.jar.old
    copy ..\rt.jar %JAVA_HOME%\jre\lib\
    popd

  • How to delete files from time machine volume

    Before selling my old MacBook Pro, I had backed up all my data on to an external WD hard drive using Time Machine. I had since switched to a desktop but since I did not have any need for the MacBook Pro files at the time, I had put aside that WD hard drive. Recently, I wanted to clear some space on that external drive to make way for some of my present files. I drilled down in to Backups.backupdb and tried to delete files, but was met with the error "
    An error occurred.The operation couldn’t be completed. (OSStatus error -5000.) Insufficient access privileges for operation".
    It did prompt me for a username and password before showing that message. I tried both my current user/pass as well as (what I remember to be) my old user/pass on the MacBook Pro. Both presented me with the same error message.
    I also did try to mount the drive as Time Machine on my present system, and then try to enter Time Machine and delete it from there. However, clicking on "Enter Time Machine ... " does nothing.
    Any ideas?

    Hi Linc,
    my back-up data is managed by Time Machine; the actual data is on a second internal Hard Drive with a capacity of 1TB - not partitioned. I am using Time Machine and have access to all data backed up since Mavericks Clean Install but not the data prior to this date.
    When I open the 1TB drive in Finder I can see a folder "Backups.backupdb/Sigi's Mac Pro/ followed by many folders of backup dates going back to 2010-09-20-103441 and up to 2014-02-07-142414 all followed with folder Macintosh HD.  February 7th  2014 was the date of the clean install.
    These Backups are followed by backup date folder 2014-02-08-075554 with a subfolder of MacPro-320GB (this is the name I assigned to my Boot Drive during formatting; I suspect I should have assigned the same name as before ie. Macintosh HD) and 2014-02-11 with a subfolder Macintosh HD, these are the ones I get access to by way of Time Machine > Restore.
    Weird thing is on Febr 11 when I relised my possible mistake and renamed the Bootdrive back to what it was initially ie. Macintosh HD despite this I have access to all backup data since the Clean Install in both folders MacPro-320GB as well as Macintosh HD but not to any data prior to the Clean Install.
    Is there something that Time Machine knows and prevents access or is it simply a matter of renaming the subfolder 2014-02-08-07554/MacPro-320GB to ........./Macintosh HD?
    I like to restore selectively and not everything - It was hard work reinstalling apps that were supposed to be the troublemakers (ref my discussion on Maverick problems) but I now need to get onto data specific to some of these apps as well as other data I may have missed. Long story? Yes and sorry.
    Sigi

  • How to delete file from other system(LAN)

    Hello folks,
    Cud u plz help me out in finding code for deleting a file from other system i.e in LAN,assuming that the connection is already established to that system.

    > Cud u plz
    sigh
    Please make the extra effort to write out words such as "could", "you", and "please". The extra keystrokes won't cost much in the way of time, and the enhanced clarity will be appreciated by those communicating on a forum with international readership. Also, it will give the appearance that you take your question seriously, which will in turn make your question look more interesting to answer.
    Thanks!
    ~

  • How directly delete file from iPod Classic?

    What a pity that when listening to the music file and press and hold the center button in the menu that appears, there is no "Delete file".

    Given that the product line has been withdrawn I suspect there is little merit in sending your idea to iPod Feedback but it is there if you want it. What I used to do was give such tracks a one star rating and use smart playlist rules that would automatically exclude tracks with one star so they would be removed on the next sync.
    tt2

  • How to delete file from server with space in name

    I am a novice, learned a little several years ago, but have to start all over again.
    I have set up the remote server (upload.comcast.net) without problems. I am unable to delete a file (file error:). I was able to upload the file, but cannot delete it. I figured out that that filename has a leading space. Now it's up on the server, but I cannot access it.
    Experiment:
    On the local folder, I deleted the leading space, and was able to upload, and delete it successfully. The original file remains unaccessible on the remote server.
    Thanks,
    Sonny

    Thanks for getting back so fast.
    Here is the error:
    /_4230151.ORF - error occurred - An FTP error occurred - cannot delete remote file _4230151.ORF.  Access denied.  The file may not exist, or there could be a permission problem.   Make sure you have proper authorization on the server and the server is properly configured
    As I mentioned before, I don't think that there is an authorization problem, as the changed name works fine, as does index.html
    What I do find interesting is that I was able to upload the file with the leading space. If I remember from several years ago, such a file would not even upload.
    I shutter to think of contacting Comcast. I think that they just give us the space with internet cable, but we are on our own with the website. Do you think that there might be some way to erase everything? I have only index.html up there, and don't mind starting over again.
    Sonny

Maybe you are looking for

  • How do i burn dvd from iMovie

    How do I burn dvd from iMovie.  iMac has yesomite installed.

  • Can't send RFC message to XI

    Hi , my scenario is RFC->XI->JDBC. I made necessary settings(RFC destination, sender RFC adapter,sender agreement and Integration design objects).Then I wrote following code; CALL FUNCTION 'BAPI_BUS2054_GETDATA' IN BACKGROUND TASK DESTINATION DEST EX

  • Addin is not loaded when in compatibility mode

    Hi there! I have a plugin that is loaded on my machine when I start Word 2010 as I want it to do. But if I load documents from Word 97 or 2003 and the application starts in compatibility mode my plugin is not loaded. Is threre anywhere a switch in my

  • Satellite A350-20Q - WEBCAM FAILED or is DISABLED

    Can anyone help me to get my webcam back? Went on one of those geek websites which tells you how to make your computer run faster, by disabling things youre not using. Cant remember what I've done but webcam doesnt work anymore. Tried reinstalling Dr

  • My bookmarks and my history don't save - I have a Mac and can't find the solution for Mac

    The same problem I've seen in other forums, but the solution is always for PC and not Mac. My bookmarks don't save (or when I try to save a new one in the toolbar, everything that comes after it disappears) and history just doesn't work. I am excepti