Deleted .DIR file

I have misplaced or deleted the original .dir file of a
movie. I do have the proteced copy of a .drx file. Is there a
program or way to convert it back to the .dir file or convert it to
another file type that Director will import and use?

rkstaggers wrote:
> Well I'm very new at this. How do I do it?
>
There's a program you can download from
http://j-roen.blogspot.com/2005/11/diropener.html
that will open your movie. It follows the same process as
what Sean
outlined. The latest version is for D8.5 though. May still be
helpful.
regards
Dean
Director Lecturer / Consultant
http://www.fbe.unsw.edu.au/learning/director
http://www.multimediacreative.com.au

Similar Messages

  • How do i delete Older files from the directory before create a new file?

    Hi,
    How do i delete older files in a particular directory,
    the senorio is count the number of .txt files in a directory and delete the older files if file count is more than 10. (if i add 11th file the very first file has to be deleted)
    i have written the code to count the files and delete , but it is deleting all the files instead of older file
    public class ExtensionFilter implements FilenameFilter {
      private String extension;
      public ExtensionFilter( String extension ) {
        this.extension = extension;            
      public boolean accept(File dir, String name) {
        return (name.endsWith(extension));
    public class FileUtils{
      public static void main(String args[]) throws Exception {
        FileUtils.deleteFiles("c:/countfile/", ".txt");
      public static void deleteFiles( String directory, String extension ) {
        ExtensionFilter filter = new ExtensionFilter(extension);
        File dir = new File(directory);
        String[] list = dir.list(filter);
        File file;
        if (list.length == 0) return;
        for (int i = 0; i < list.length; i++) {
          //file = new File(directory + list);
    file = new File(directory, list[i]);
    if ((list[i]).length()>=10)
         System.out.print(file + " deleted : " + file.delete());
    Thanks,
    Jamin Rosina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    What your code is doing now, is deleting all filenames that are longer than 10 characters.
    Your problem lies in the line:
    if ((list).length()>=10)

  • How to delete a  file from AL11??????

    Hi Friends,
    how can i delete a file from AL11 directory....
    i have found FM's like EPS_DELETE_FILE, EDI_PORT_DELETE_FILE and some more from SAP system but those are not deleting the files....
    let me know if i can write a program for this and if yes then guide me for writing the same....
    Thanks,
    Nagesh.

    reference:http://saplab.blogspot.com/2007/10/sample-abap-program-to-delete-file-from.html
    REPORT ZDELETE.
    Delete a file on the application server.
    PARAMETERS: P_DIR LIKE RLGRAP-FILENAME
    DEFAULT '/usr/sap/trans/', *it will delete files from this dir
    P_FILE1 LIKE RLGRAP-FILENAME.
    DATA: P_FILE(128).
    DATA: W_ANS.
    START-OF-SELECTION.
    CONCATENATE P_DIR P_FILE1 INTO P_FILE.
    check file exists
    OPEN DATASET P_FILE FOR INPUT.
    IF SY-SUBRC NE 0.
    MESSAGE E899(BD) WITH P_FILE 'does not exist'.
    EXIT.
    ELSE.
    CALL FUNCTION 'POPUP_CONTINUE_YES_NO'
    EXPORTING
    DEFAULTOPTION = 'N'
    TEXTLINE1 = P_DIR
    TEXTLINE2 = P_FILE1
    TITEL = 'ARE YOU SURE YOU WANT TO DELETE'
    START_COLUMN = 25
    START_ROW = 6
    IMPORTING
    ANSWER = W_ANS
    EXCEPTIONS
    OTHERS = 1.
    ENDIF.
    CLOSE DATASET P_FILE.
    CHECK W_ANS = 'J'.
    delete
    DELETE DATASET P_FILE.
    IF SY-SUBRC NE 0.
    MESSAGE E899(BD) WITH 'Invalid file name' P_FILE.
    ELSE.
    CLOSE DATASET P_FILE.
    MESSAGE I899(BD) WITH P_DIR P_FILE1 'DELETED'.
    ENDIF

  • Original deletion from content server once we delete DIR

    Hi,
    I'm deleting DIR using transaction CDESK. Will this method, delete original which is checked in content server?
    Regards,
    Yogesh

    Hi Yogesh,
    Yes,successful execution of the CDESK transaction for deletion ensures that the DIR and the meta data is deleted from the database and all the associated original files are deleted from the database/Content Server depending upon the storage location opted for.
    Regards,
    Pradeepkumar Haragoldavar

  • Problem in deleting Zip files unzipped using java.util.zip

    I have a static methos for unzipping a zip file. after unzipping the file when i am trying to delete that file using File.delete()its not getting deleted. but when methods like exist(). canRead(), canWrite() methods are returning true what can be the possible problem ? i had closed all the streams after unzipping operation Please go through the following code.
    public static boolean unzipZipFile(String dir_name, String zipFileName) {
    try {
    ZipFile zip = new ZipFile(zipFileName);
    Enumeration entries = zip.entries();
    while (entries.hasMoreElements()) {
    ZipEntry entry = (ZipEntry) entries.nextElement();
    // got all the zip entries here
    // now has to process all the files
    // first all directories
    // then all the files
    if (entry.isDirectory()) {
    // now the directories are created
    File buf=new File(dir_name,entry.getName());
    buf.mkdirs();
    continue;
    }// now got the dirs so process the files
    entries = zip.entries();
    while(entries.hasMoreElements()) {
    // now to process the files
    ZipEntry entry = (ZipEntry) entries.nextElement();
    if (!entry.isDirectory()){
    File buf=new File(dir_name,entry.getName());
    copyInputStream(
    zip.getInputStream(entry),
    new BufferedOutputStream(
    new FileOutputStream(buf)));}
    } catch (IOException e) {
    e.printStackTrace();
    return false;
    return true;
    now i am trying to call this method to unzip a zip file
    public static void main (String arg[]){
    unzipZipFile("C:/temp","C:/tmp.zip");
    java.io.File filer = new File("C:/tmp.zip");
    System.out.println (filer.canRead());
    System.out.println (filer.canWrite());
    System.out.println (filer.delete());
    Please tell me where my program is going wrong ?

    Thanks .. the problem is solved... i was not closing the Zip file .. rather i was trying to close all the other streams that i used for IO operaion ... thanks a lot

  • I am not able to display or change the file after deleting the file

    Hi All,
    I am checking in the document to content category while creating the DIR.
    I tried to delete the file on my desktop and after i am unable to open the file in CV02N,It gives the below error:
    Error while executing "C:\
    Firdosi\Desktop\gg.txt"
    I changed the settings in define workstation applications also and i ticked on Data check of.
    Please advice.
    Muzamil

    Hi Muzamil,
    The error is occuring because you have not checked-in the document before deleting. First you need to save the DIR and then you can delete the file from your desktop. Then only SAP DMS can retrieve the file from content server and display on screen.
    If you have only selected the file which is not checked-in means DIR not saved. And suddenly you tried to delete the original file from desktop. It means the recod is not saved in SAP DMS and before that you have tried to delete it.
    This is standard behaviour and such type of files can't be retrieved from content serever as it's original is not saved properly i.e. checked-in.
    Hope this will resolve the query.
    Regards,
    Ravindra

  • Try to delete a file, but SSIS think it is a path

    I have a process that reads file with different extension, at the end I will either move or delete the file.  Below is the code.
    I can run it with success if debug locally, it failed when trying to run the package.  Below is the error:
    The file received does not have extension - item_2290.seq
    Error message: Access to the path 'E:\myfolder\item_2290.seq' is denied.
    I tried different method and none worked, on if I delete the driectory.  I donot want to recreate the dir each time.  Please help, I am pulling my hair and no luck.
    Below is the code:
    foreach
    (var srcfile
    in
    new
    DirectoryInfo(SourceFilePath).GetFiles())
    if (File.Exists(targetFilePath
    + srcfile.Name) == true)
    srcfile.Delete();
    else
    File.Move(SourceFilePath + srcfile.Name, targetFilePath + srcfile.Name);
    W.E. Pan

    When you say "it failed when trying to run the package" do you mean that it failed when running from SQL Agent but that it didn't fail when running from Visual Studio?  If so, then the SQL Agent service account doesn't have permission
    to move files from the folder "E:\MyFolder"  You need to give the service account permission or better yet create a proxy account. 
    http://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/ 
    Russel Loski, MCT, MCSE Data Platform/Business Intelligence. Twitter: @sqlmovers; blog: www.sqlmovers.com

  • Deleting a file using getParameter()

    <%
          File d = new File(dir);
          File[] files = d.listFiles();
          for (int i = 0; i < files.length; i++)
                 filename=files.getName();
    %>
    <input name="delete_box" type="checkbox" value="<%=filename%>">
    <%
    String[] fileNames = getParameterValues("delete_box");
    for (int j = 0; j < fileNames.length; j++)
    String fileOne = new String(fileQ[i].toString());
    for (int k = 0; k < files.length; K++)
    i f (filename.equals(fileOne))
    files[k].delete();
    Please help! In the code above, I am trying to allow a user check a checkbox for files they want to delete. I am trying to put the checked files into a String array, then loop through the array and compare it to files stored on the hard drive, then delete the file when they are equal.
    I'm not that familiar with using getParameter() and believe I am using it wrong as the code above does not delete the files. Any help would be greatly appreciated as I have been working on this for days.
    thanks

    The code looks ok to me - what you have shown of it.
    As DrClap intimated, it would be better to split this into two parts.
    One which displays the files/checkboxes (first request)
    Another which handles the submission of that page (second request)
    The problem I could see right now is that it would display all the current files, and then go through deleting some of them - so the ones you have displayed are now incorrect.
    The best way to sort this out is to print out the values that you are retrieving - see if they are being got successfully from the form submission (I don't see a form, or submit button, but I presume they are present)
    Cheers,
    evnafets

  • HT1526 still can't delete the files in my trash!

    Folder in trash:
    jojojo > 1 > 1;2;3;4
    All folders have no files in them. I literally tried everything but can't get rid of these 6 empty folders. There seem to be invisible ePub files in these folders. Here's a screen shot. I'm sure I followed the steps correctly.
    http://www.directupload.net/file/d/3604/ka69ecfv_png.htm
    Please help!

    none of these methods work. I tried:
    rash utilities for eradicating troublesome files
    You may want to download and install the freeware utility Trash It! or the shareware utility Cocktail. Using one of these utilities is often the fastest way to Trash recalcitrant files.
    Note: Be sure to employ a version of the utility that is compatible with the version of Mac OS X you are using.
    Force the Trash to empty using the Option key
    This technique uses a hidden feature of Mac OS X to force the Trash to empty. Perform the following steps in the order specified:
    Press and hold the mouse button on the Trash icon in the Dock. The context menu for Trash will display.
    Press and hold the Option key or the Shift-Option keyboard combination,
    Select Empty Trash from the context menu for Trash.
    Release the keys pressed and held in step 2.
    Empty and recreate an account's Trash
    The following procedure will "kill two birds with one stone." It will both:
    Empty the Trash of an affected account.
    Create a new ~/.Trash directory, with correct ownership and permissions, for that account.
    Perform the following steps in the order specified:
    1.
    If the affected account is protected by FileVault, log in to the affected account, then switch to and log in to your Admin account via Fast User Switching. Otherwise, log in to your Admin account.
    2.
    Open Terminal, located in the Macintosh HD > Applications > Utilities folder.
    3.
    At the Terminal prompt, type one of the following commands:
    If the affected account is:
    Then type the Terminal command:
    Your Admin account:
    sudo rm -ri ~/.Trash
    Another user account:
    sudo rm -ri /Users/user_name/.Trash where user_name is the short name of the affected account.
    Note that:
    There is a single space after each of the terms sudo, rm, and -ri in the command.
    Assure you have typed the command exactly as specified before proceeding: typographical errors in this command can have dire consequences, including erasing your hard drive!
    4.
    Press Return.
    5.
    Type your Admin password when prompted, then press Return.
    6.
    Type y for yes in response to the subsequent prompts to delete each file in the trash and finally the affected .Trash folder itself.  The prompts are finished when the Terminal prompt returns.
    7.
    If the affected account is your Admin account, log out. If the affected account was another user account that is logged in via Fast User Switching, log out of that account.
    8.
    Log in to the affected account. It will now have a new, working, and empty Trash.
    Steps 1-6 remove all files in the affected account's Trash as well as deleting the hidden and invisible ~/.Trash directory for that account. The remaining steps result in recreating the affected account's Trash, with proper ownership and permissions.
    none of these steps worked. i also tried both utilities. trash it! doesnt work and says i have to wait and nothing happens and cocktail says it removed everything but these folders are still there! i really dont know what to do, looks like i will have to reinstall everything to get rid of the folders. it's unbelievable. any ideas? the methods REALLY dont work, im not some oncompetent guy.

  • Delete old files

    Hello,
    In usual when I create scenarios with file (Inbound or outbound) I sand backup file to backup folder.
    I'm  looking for easy way to create scenarios or something else that clean the backup folders.
    I'm looking for process that clean the older files, for example I want to erase all the files that older then 3 month.
    Do you have any idea?
    Regards
    Elad

    Hello,
    I found a script for that:
    '* File:               fdel.vbs
    '* Created:               June-2006
    '* Version:               1.0
    '* Main Function: Check "DateCreated" of specific files and if difference between Now time
    '*                pass the Time limit and delete old files
    '* Usage:   WSCRIPT.EXE fmon.vbs [Path to Directory with old files] [Time limit in days]
    '* Example: WSCRIPT.EXE fmon.vbs C:\Windows\Temp 7
    Dim objExCmd, fso, Time_Out_Before_Action, Base_dir, filename1
    On error resume next
    Set WshShell = WScript.CreateObject( "WScript.Shell" )
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set objArgs = Wscript.Arguments
    Const ForReading = 1, ForWriting = 2
    For  intI = 0 To Wscript.Arguments.Count - 1
    next
    Base_dir = Wscript.Arguments.item(I)
    Time_Out_Before_Action = Int(Wscript.Arguments.item(I+1))
    '**** Getting list of files *****
    'Set objExCmd = WshShell.Exec("cmd /c echo off"&Chr(38)&"for /f "&Chr(34)&"tokens=* delims=. "&Chr(34)&" %a in ('dir "&Chr(34)&Base_dir&Chr(34)&" /b') do echo %a")
    Set objExCmd = WshShell.Exec("cmd /c echo off"&Chr(38)&"dir "&Chr(34)&Base_dir&Chr(34)&" /b")
    Do until objExCmd.StdOut.AtEndOfStream
    filename1 = objExCmd.StdOut.ReadLine
    If DateDiff("d", fso.GetFile(Base_dir&"\"&filename1).DateCreated, Now) > Time_Out_Before_Action Then
    'MsgBox filename1&"; Diff="&DateDiff("d", fso.GetFile(Base_dir&"\"&filename1).DateCreated, Now)&"> time ="&Time_Out_Before_Action
    f = fso.DeleteFile(Base_dir&"\"&filename1,true)
    End If
    Loop
    Regards
    Elad

  • How do I delete a file using Xterminal?

    Hi , recently in the interest of playing Doom thro my N900 - I copied 3 wad files thro xterminal to opt/doom/wads..
    Now i guess this is occupying my root memory? do you know how i can delete the files using Xterminal. pls let me know
    thx.

    if it is in /opt, it shouldn't be!!
    /opt is actually linked into /home
    /home is a 2GIG partition on the EMMC that stores /opt (for optified packages.. all packages you download should sit in /opt) and all your settings / content (like address books and conversations)
    To delete it using an x terminal, you really mean using a shell.. the shell is what you see inside the x terminal..
    cd /opt/blah/dir
    rm filename
    rm is delete.. or more accurately remove!! It came in a time when keypresses were expensive
    cp is copy
    mv is move /rename
    ls is list (as in dir)
    df is diskspace free
    du is diskspace used (as in by a file or directory)
    there are loads of things like that
    be careful.. rm is the easiest way to ruin a system!

  • Test for System File and Delete System File

    I have about 300 different tests that I run using TestStand, each with a somewhat unique report output filename:
      Example:  0-RMC 80 Timer_Interface_MaxValue_Report.html
    The filename includes the
        Number of Errors
        Product Name
        Build Revision
          and a unique test name.
    I would like to add a step to an existing initialization routine to test for an existing report file name and if it exists, bypass the test sequence.
    The question is, how do I run a system command within TestStand to test for a file, for example:
      If (SystemCommand(dir Locals.ReportPath\0-RMC 80 Timer_Interface_MaxValue*.html) then
        Don't run this test...
    Similarly, I also need to know how to delete a file from within TestStand.
        SystemCommand(Del 9999*.*)
    Mike

    You can use the FindFile method in the TS API:
    FindFile Method
    Syntax
    Engine.FindFile ( fileToFind, absolutePath, userCancelled, promptOption = FindFile_PromptHonorUserPreference, srchListOption = FindFile_AddDirToSrchList_Ask, isCommand = False, [currentSequenceFile])
    The function itself returns a boolean which indicates if the file exists or not. 
    Then just use a Call Executable step to run command line string to delete the file.
    Hope this helps!
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • How to delete when file in use by the finder?

    I have two files in my trash which won't delete. I get the error that they are being used by another program. Holding down option, using secure empty trash, using the terminal method of deleting the trash.. none of them work.
    So I did the terminal command: lsof /path-to-file and found out it was being used by Finder. I don't think I can exactly quit the Finder process in Activity Monitor.. so how can I get these files out of my trash?

    Thanks. Unfortunately, when I quit finder and try to delete the files in the trash by the following command:
    sudo rm -rf ~/.Trash/*
    It tells me "Directory not empty". Argghh..
    I feel like I've tried everything. Can someone give me some other suggestions? Thanks

  • Error while deleting a file which is in a folder which inturn in workspace

    12:20:42.309  DELETE  (FAILED: Conflict [(pre||post)-condition failed: x:concurrency-lock-denied])  Hello.java   (C:\CFolder1\WSF1\WSF2\Dev\HelloWorld\Package\Hello.java)
    --- Problem summary: ---
    12:20:42.309  DELETE  (FAILED: Conflict [(pre||post)-condition failed: x:concurrency-lock-denied])  Hello.java   (C:\CFolder1\WSF1\WSF2\Dev\HelloWorld\Package\Hello.java)
    I am getting above error while deleting a file which is in a folder which inturn in workspace

    Here is the problem I have with deleting my folder. I had created a WD project TaxTool and and added the DC to my SC. There were obviously some checkedout activities. Being new to this, I deleted the project directly without checking in the activities. Now I have folder TaxTool/_comp with nothing underneath on the DTR server and on my client. I am unable to checkout TaxTool for delete but the checkout of _comp folder fails in NWDS with the following error:
    <b>EDIT  (FAILED: server response: Conflict [(pre||post)-condition failed: x:no-exclusivity-with-existing-checked-out-resources])  comp   (C:\JDI\JDIDEMO1\intelJDI_TEST\dev\inactive\DCs\intel.com\TaxTool\_comp\)</b>
    If I try the same from the DTR shell, I get this following error:
    <b>Unexpected problem occurred during executing command.Lockfile "C:\Documents and
    Settings\bvedamur\.dtr\.syncdbs\5b0d8b2110a7a29883734c0407462df8.syncdbM.lock" is already in use by another process.</b>
    I am the only user in the system (doing R&D) and I have tried Sync and Delete. Nothing works. Help appreciated.
    Thx
    Bhaskar

  • When using a Seagate 1T external hard drive and Time Machine to back up hourly, if I delete photo files from the Mac hard drive before the next back up, are these retained on the Seagate drive or will they be lost (overwritten) in the next backu in the ne

    Does Time Machine erase previously saved files if, say, photos are deleted from the Macbook upon the next update, or will they be stored indefinately despite the current status of the files stored on the computer? Eg. can I bckup photo files to a Seagate 1T disc and then delete them to make more room on the computer in the knowlwdge that they are always going to be on the Seagate disc? Sorry if this is very elementary but I have not used a back up before like this, and am not sure how successive backups are overlaid or retained. Thanks!!

    TM is not designed to do what you ask. As Allan wrote TM is an incremental backup not an archival solution.
    If you delete a file from the HD it will eventually be removed from the TM backup (if it ever makes it on to the backup at all).
    How long before it is removed depends on a number of factors, TM disk drive size being one factor but not the only one.
    Material that is impossible to replace and is important to you (image files usually fitting that description) need to be backed up to as least one other drive and preferably more for long term storage.

Maybe you are looking for

  • Error: Invalid element 'servlet' in content of 'web-app'

    Hi, I m working on a project that includes JSPs, whenever I wanna add JSP to my project it shows following compilation error: Invalid element 'servlet' in content of 'web-app', expected elements '[error-page, taglib, resource-env-ref, resource-ref, s

  • Itunes Crashed During Download-Can't Resume Download

    First, I am running Vista with a SATA drive. I download episodes of "The Office" to that drive them copy to a network location and play the files from there. This has worked the last couple of episodes. I am running version 7.0.2.16. When I downloade

  • Norton Ghost + Parallels?

    Hello, I just switched over to Parallels from Boot Camp. Before switching I made a backup of my XP install using Norton Ghost 10.0 I have these backup files on both a USB 2.0 and a Firewire external drive. I have been unsuccessful in restoring my sys

  • JDBC mySQL backup

    Hi all! Is there a way to backup a mySQL database remotly with JDBC?

  • Photoshop CS5 64 bit tools window, why Crop tool disappeared from tools window?

    I am using the above version of Photoshop in windows 7 64 bit.  A few week ago the crop tool just disappeared from the Tools window.  The crop tool is just below move tool and just above the rectangular marquis tool.  I have been using various versio