Renaming a file to match a wildcard result

I am trying to compress a file using built-in Windows tools. I need to use a wildcard to read the file because the input filename changes slightly each day (to reflect the date stamp). The current batch file that I have found will ZIP up a file based on
a wildcard, but it gives the resulting ZIP output file a static name.
I need it to have the exact same name as the input file.
E.g.: if the input filename is blahblahblah02132014.txt, the output filename needs to be blahblahblah02132014.zip.
Please help?
Here is my current script:
set FILETOZIP=C:\Users\<my.name>\Documents\blah*.txt
set TEMPDIR=C:\temp738
mkdir %TEMPDIR%
copy %FILETOZIP% %TEMPDIR%
echo Set objArgs = WScript.Arguments > _zipIt.vbs
echo InputFolder = objArgs(0) >> _zipIt.vbs
echo ZipFile = objArgs(1) >> _zipIt.vbs
echo CreateObject("Scripting.FileSystemObject").CreateTextFile(ZipFile, True).Write "PK" ^& Chr(5) ^& Chr(6) ^& String(18, vbNullChar) >> _zipIt.vbs
echo Set objShell = CreateObject("Shell.Application") >> _zipIt.vbs
echo Set source = objShell.NameSpace(InputFolder).Items >> _zipIt.vbs
echo objShell.NameSpace(ZipFile).CopyHere(source) >> _zipIt.vbs
echo wScript.Sleep 2000 >> _zipIt.vbs
CScript _zipIt.vbs %TEMPDIR% C:\Users\<my.name>\Documents\someArchive.zip
echo Y | del %TEMPDIR%\blah*.*
rmdir %TEMPDIR%
pause

Thanks.
I can get the right filename now, with the ZIP extension and everything.
But I'm still getting the error when I try to rename the file. This line:
rename C:\Users\<my.name>\Documents\ZipFile.zip %OUT_NAME%
gives the following error when it executes:
"The syntax of the command is incorrect."
The environment variable %OUT_NAME% is not being set in your last example, but I think you were doing that to teach me something.
I used the code from your prior example again:
for /f "delims=" %%I in ('echo %IN_NAME%') do set OUT_NAME=%%~dpnI.zip
and I can see that the correct filename ("C:\Users\<my.name>\Documents\Blah blah blah 20140218.zip") is being set in the environment variable %OUT_NAME%. But again, when I go to rename "ZipFile.zip" to that new name, I get the syntax error. I think
it is because of the spaces in the filename.
Sorry for making this harder than it needs to be...

Similar Messages

  • Renaming a file by only changing case results in Permission prompt

    We have a user who is unable to rename a file on their desktop if just changing a letter to upper or lower case.  For example, if a user has a file "file123.txt" and they attempt to rename it to "File123.txt", the user gets a pop
    up saying they need permission from their own account. However if we try to rename that same file to "file456.txt" it works no problem.
    Some environment information:
    -Domain Workstation and User
    -The problem affects ALL files in the same respect
    -The Desktop is redirected to the server
    -The user does have Full ownership and Full NTFS permissions to their files
    -The issue only happens when making the subtle case change, not fully renaming the file or adding to it
    Lance

    Hi,
    I would say this is not what you think----this is an issue with your system. In fact,  about Windows File
    System, File and directory names can be up to 255 characters long, including any extensions. Names preserve case, but are not case sensitive. NTFS makes no distinction of filenames based on case.
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Renamed multiple files iTunes Match. Can I restore from time machine?

    Hi
    Hopefully someone might be able to assist.
    I downloaded a live album from a bands official store on their website.
    After importing into my itunes library, I tried to rename the two discs so that they appeared as one album, (I've done this lots of times before).
    Stupidly, I was rushing before I had to leave the house, was unaware that is actually selected 50 albums and accidently renamed  a large number of files as one album!!!
    It's made slightly more complicate because I have iTunes Match and they were all stored in the cloud.
    Can I restore from time machine and manually update iTunes Match?
    Amy help would be appreciated
    Thanks

    when i say right clicking, i mean in itunes, right clicking the song and going get info and then changing the properties via the info tab.
    yehh i done the grouping tracks together by holding down the command key.
    but because i have some smart playlists with the same songs in, i changed both the genre and grouping not realising, this was ok for one smart playlist but totally messed the other up, especially because in for example "dance classics" smart playlist, there also in a folder on my hdd, . and thats the playlist i messed up., but if i drag the folder back into itunes, there all over the show on itunes and in the other playlist too, hence why it isnt as easy to easilly sort and rectify.
    so what id like to do is just copy the folder again from my time machine backup, replacing the files but im unsure if this would solve it.
    Message was edited by: Ian-K

  • Incremential Backup & renaming/moving files

    Hi!
    I guess usually, when an incremental backup is done, a moved or renamed file will be treated exactly as two different files - one that has been deleted somewhere, and a new one somewhere else, resulting in an "additional copy" of the file and the loss of the traffic & disk-space?
    If so: Is there a solution, that actually just links the moved files trough different backup stages instead instead of initiating another "transfer/copy" and keeping different copies of the same file? Or something like that?
    Or in general: Which backup solution might be a good one to get into, if moving/renaming big files is common? What man-pages will I most likely want to read and what words to google to be able to make the right "decision"?
    Thanks!

    Mmmh... something like...
    1) make list of "deleted on source" and "new on source" files just like I guess rsync etc. do too at some point
    1a) optionally drop files with filesize smaller than X from list
    2) look if a distinct "new" (source) file has same file-size as a "deleted" (old backup) one / match up
    3) compare md5 for files that match (again source <=> old backup)
    4) link finds from old backup to new increment backup instead of copying from source
    Am I missing something? Maybe I just can't wrap my brain around that one to see the real problem...

  • Can't rename a file using File.renameTo(...)

    Hi,
    I have a servlet, RenameFile, that receives audio file via HTTP Post and writes it to /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav. Then it creates directories under /alert_messages directory based on the timing parameters that it get. Finally, it renames /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav to /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV. RenameFile runs fine when it runs by itself (ONLY one Tomcat, jakarta-tomcat-4.1.30, is running). However, RenameFile fails to rename the /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav to /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV when it runs in a Linux box that jboss-3.2.1_tomcat-4.1.24 is also running. In this box, TWO versions of Tomcat are running at the same time. I set the /alert_messages directory with �chmod �R 777� and run jakarta-tomcat-4.1.30 as tomcat user. RenameFile fails the rename operation. But, it creates the /alert_messages/2005/06/22/22/00/ directories.
    It seem like RenameFile can create directory but can�t create file in the /alert_messages directory when both version of tomcats are running at the same time.
    Can it be due to both the jakarta-tomcat-4.1.30 and the jboss-3.2.1_tomcat-4.1.24 versions are running at the same time in one Linux box?
    Can this be Jboss prevented the operation?
    I did not receive any io exception!!!
    Any help in this issue is greatly appreciated.
    Debug listing from the RenameFile;
    - originalFilename: recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.toString(): /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.getName(): recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.length(): 122986
    - file /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV
    - file NOT renamed /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV
    File Listing in the /tmp directory create by RenameFile;
    -rw-r--r-- 1 tomcat tomcat 122986 Jun 22 07:33 recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    Directoy Listing in the / directory with �ls �la�;
    drwxrwxrwx 3 tomcat tomcat 4096 Jun 22 07:28 alert_messages
    Directory created by the RenameFile with �ls -la /alert_messages/2005/06/22/22/00�;
    drwxr-xr-x 2 tomcat tomcat 4096 Jun 22 07:33 .
    drwxr-xr-x 3 tomcat tomcat 4096 Jun 22 07:33 ..
    Out put from catalina.out;
    !!!!! Can Read the old File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Write the old File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Not Read the new File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Not Write the new File !!!!!!!!!!!!!!!!!!!!
    !!!!! renameTo return false !!!!!!!!!!!!!!!!!!!!
    Code That rename a file:
      public synchronized String renameAlertMessageFile(String oldFileName,
                                String newFileName)
                throws SecurityException, NullPointerException
        File oldFile = null;
        File newFile = null;
        String result = null;
        StringBuffer myNewFileName = null;
        boolean renamed = false;
        try {
          int indexStringValue;
          int newFileLength;
          int indexOfPeriod;
          int indexOfLastUnderScore;
          int lengthOfExtension;
          boolean  Contin = true;
          String sNumber = null;
          String indexString = null;
          myNewFileName = new StringBuffer(newFileName);
          oldFile = new File(oldFileName);
          newFile = new File(myNewFileName.toString());
          if (oldFile.canRead() == false) {
            System.out.println(" !!!!!  Can Not Read the old File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Read the old File !!!!!!!!!!!!!!!!!!!!");
          if (oldFile.canWrite() == false) {
            System.out.println(" !!!!!  Can Not Write the old File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Write the old File !!!!!!!!!!!!!!!!!!!!");
          if (newFile.canRead() == false) {
            System.out.println(" !!!!!  Can Not Read the new File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Read the new File !!!!!!!!!!!!!!!!!!!!");
          if (newFile.canWrite() == false) {
            System.out.println(" !!!!!  Can Not Write the new File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Write the new File !!!!!!!!!!!!!!!!!!!!");
          renamed = oldFile.renameTo(newFile);
          if (renamed == false) {
            System.out.println(" !!!!!  renameTo return false !!!!!!!!!!!!!!!!!!!!");
        } catch (NullPointerException ex) {
          // Throw the same exception so that the caller may catch the
          //   exception and log the error
          System.out.println("NullPointerException For The New Dest File Name");
          ex.printStackTrace();
          throw ex;
        } catch (SecurityException seEx) {
          System.out.println("SecurityException For The New Dest File Name");
          seEx.printStackTrace();
          // Throw the same exception so that the caller may catch the
          //   exception and log the error
          throw seEx;
        } finally {
          if (renamed == true)
            return myNewFileName.toString();
          else
            return null;
      } // End renameAlertMessageFile

    Hi,
    Thank you for replying to my message. The servlet has been running for me for the last 12 months. However, it was running by itself without the Jboss-tomcat running on the same box. Can this be the catalina.policy file in the jboss-tomcat version restricted the rename operation. We are not allowed to write file under the umbrella of J2EE. But the servlet did not run within Jboss-tomcat. This really gets me thinking that something is not working correctly. Perhaps tomcat did not has the permission to write on the /alert_messages directory, again it did created the subdirectories under the /alert_messages.
    Any idea of what is going on?

  • Kde 4.6.1, 4.6.2 widget-folderview, rename a file gives an error.

    I already submitted the issue on bugs.kde.org:
    https://bugs.kde.org/show_bug.cgi?id=270414
    Version:           unspecified (using KDE 4.6.2)
    OS:                Linux
    When i rename a file using folderview, the file is renamed, but an error is
    triggered.
    Reproducible: Always
    Steps to Reproduce:
    -place a folderview widget on the desktop
    -rename a file from 'oldname' to 'newname'
    Actual Results: 
    - see the error message: "The file or folder oldname does not exist."
    - see that the file has been renamed to 'newname'
    Expected Results: 
    Don't throw an unuseful error message, it is clear that 'oldname' does not
    exists anymore.
    ...but it seems that at least someone can't reproduce it on kubuntu packages
    ------- Comment #1 From Nikos Papas 2011-04-09 18:22:21 -------
    I cannot reproduce the error. Using KDE 4.6.2, 64bit, Kubuntu packages.
    Can somebody try to reproduce under arch please?
    Thank you very much!
    Last edited by kokoko3k (2011-04-11 10:59:19)

    I can reproduce this error.
    I tried renaming a file in the folder view, and renaming a file in a sub-folder off of the folder view.
    In all cases, I got the "does not exist" error, and the re-named file.
    Arch: 64-bit
    KDE: 4.6.2

  • How can I stop Microsoft IE renaming .jar files to .zip files?

    I realise this question has been asked before on this forum, but as far as I can tell no answer has yet been posted.
    If I put a .jar file on my webserver for people to download, later versions of Internet Explorer will rename the file from xxx.jar to xxx.zip on the client's machine. Is there any way of stopping this from happening?
    It looks like the problem is caused by IE examining the contents of the file and realising it uses ZIP compression. As a result, any file that I create (not just jars) that uses Java to zip the contents, when placed on a web server, gets interpreted as a .zip file by IE regardless of its extension.
    I realise there are some workarounds such as zipping the .jar file, creating a .exe file from the .jar, telling everyone to use Firefox etc., but none of these are really acceptable or particularly efficient. I am really hoping there is something I can do to the .jar file or the compression process that will tell IE to leave the file alone.
    Thanks,
    Jo.

    You can save any kind of document on iCloud Drive, as long as the file size is smaller than 15GB.
    See:   iCloud Drive FAQ
    Create a new folder for your Office documents on iCloud Drive and drag your documents there, or select iCloud Drive in the File Chooser panel, when you save a document.

  • Renaming MXF files and pulling them out of their file structure

    My company's workflow necessitates that we pull mxf files out of the file structure and rename them. I know this is a big no-no, but with CalibratedMXF it is no problem.
    My proposed workflow was to use Prelude to locate the mxf files from where they are backed up on my drive, ingest them, copy them to a new location, and rename them.
    In attempting this process, however, I am realizing that Prelude will not pull mxf files out of their file structure. It copies the entire mxf folder structure to the new location, and renames the media only in Prelude (the clip name, not the filename).
    The only way to get Prelude to rename and discard with folder structure upon copy to new location is to check the 'Transcode' box and transcode the media.
    I want to work natively in mxf, I do not wish to transcode or rewrap.
    My workaround was to transcode the files to the exact same setting: MXF Op1a with preset 'Match Source (rewrap)'
    However this process simply forces Prelude to crash.
    Any suggestions on how I can batch copy and rename mxf files, instead of going through each level of folders for each clip and dragging the file out and manually renaming one by one?
    Prelude CC
    OS X 10.9.5
    3.5 GHz Intel Core i7
    files are C300 MXF Op1a MPEG-2

    Hi Kaye,
    Sorry if I missed this in your description of the problem, but what device is generating the MXF files you are attempting to rewrap? Also, when Prelude crashes, which it should not do obviously, does the crash reporter launch? If so, can you copy or attach the report into a reply?
    Thanks!
    Michael

  • Renaming a file you already have in file obejct?

    Hi
    I have a file I've already loaded into a var.
    I've made a function that I want to rename the file on the hard drive using moveTo(), so that backup_ is added to the front of the file name:
    myFile.nativePath;
    renameMyFile(myFile);
    public function renameMyFile(filePath:String)
                var original = File.documentsDirectory;
                original = original.resolvePath(filePath);
                var destination:File = File.documentsDirectory;
                destination =  destination.resolvePath("backup_"+filePath);
              original.addEventListener(Event.COMPLETE, fileMoveCompleteHandler);
                original.addEventListener(IOErrorEvent.IO_ERROR, fileMoveIOErrorEventHandler);
                original.moveToAsync(destination);
    private function fileMoveCompleteHandler(event:Event):void {
                    trace(event.target); // [object File]
    private function fileMoveIOErrorEventHandler(event:IOErrorEvent):void {
                    trace("I/O Error."); 
    It keeps tracing "I/O Error."  The new file doesn't already exist, so the error isn't thrown due to it already being there.
    What is the correct way to do this, if you already have the file's nativePath in a string?
    Thanks guys.

    You would be better off using a script to do this as an example as I don't think it would be possible in the Bridge re-name.
    Using ExtendScript Toolkit or a Plain text editor copy the code into either and save it out as Filename.jsx
    This needs to be saved into the correct folder. this is found by going to the preferences in Bridge, selecting Startup Scripts, this will open the folder where the script is to be saved.
    Once this is done close and re-start Bridge.
    To Use: Goto the Tools Menu and select Rename PDFs
    Make sure you test the code with a few copied files into a seperate folder first to make sure it does what you want.
    The script will do all PDF files in the selected folder.
    #target bridge 
    if( BridgeTalk.appName == "bridge" ) { 
    renamePDFs = MenuElement.create("command", "Rename PDFs", "at the end of Tools");
    renamePDFs.onSelect = function () {
    app.document.deselectAll();
    var thumbs = app.document.getSelection("pdf");
    for( var z in thumbs){
    var Name = decodeURI(thumbs[z].spec.name);
    var parts = Name.toLowerCase().replace(/\s/g,'-').match(/(.*)(-)(.*)(-)(.*)(\.pdf)/);
    var NewName = parts[1].replace(/^[a-z]/, function(s){ return s.toUpperCase() });
    NewName += parts[2]+parts[3]+parts[4]+parts[5].toUpperCase().replace(/[A-Z]$/, function(s){ return s.toLowerCase() });
    NewName += parts[6];
    thumbs[z].spec.rename(NewName);

  • Renaming movie file

    I can't rename one of my movie files in itunes. Everytime I change the title through the info, it goes back to the original title. I checked to make sure that I had read/write privleges and I do. What should I do?

    iTunes will rename the finder file name to match the "Name" column of the iTunes window. If you rename the file from the finder then play the file via iTuens it will again be renamed to match the "Name" column.
    To rename items then do it from the iTunes window and not the finder. Also make suer the file is not locked.
    MJ

  • Renaming typedef file caused constants reset

    Hello!
    Here's a short description of the problem I encountered:
    I renamed the filename of the typedef that was used in my state machine for state coding (see for example State Machine template shipped with LV). As result I lost values of ALL constants that coded states in my state machine, i.e. they were reset to value of the first value in state enum.
    Note: when opening state machine that used the typedef
    I got the message something like "VI was changed in memory. Reload from disk or view from the memory?". And 2 buttons: View and Discard. I clicked "View".
    Then after restoring all constants manually, I saved my work to archive and tried to rename typedef file again, the result was the same - all constants reset to first value of enum.
    I restored files from archive, again renamed typedef file,
    then closed my app WITHOUT saving state machine that used typedef. After opening my program I got the message "Searching for my typedef", pressed "Browse..." and loaded typedef from renamed file. Constants were left without any change (uh-r-r-a!).
    Before posting this message to forum I tried to make an example to show the problem, but o-o-ps I failed to do it.
    It didn't repeat even with my program.
    This post can't be considered as bug report, as I can't repeat the problem. But I think the problem exists as I lost values of all constants after renaming typedef file, and this is the fact.
    So my advice (that old as the world) to everybody is to save work even when innocent actions are made such as renaming typedef file names.
    Probably somebody encountered this problem and knows how to repeat it.
    Thanks for attention.
    Any comments appreciated.
    Rashid.
    Using LV 8.0 (LV Run Time Engine 8.0.1) on Win XP with Russian locale, all VIs used in my programs have names in cyrillic sometimes mixed with english letters, e.g. "russian name (typedef).ctl".

    Hello, Charlie,
    I can say absolutely sure that I always used LabView to rename my typedef file. I never use Windows Explorer to rename typedef files (or any other LV files) in my practice.
    Besides, when the values of my constants were reset there wasn't any broken wires. The block diagram wasn't corrupted. Everything was fine except default values of my constants. Due to that I noticed this error a little later - after renaming typedef file I ran my program and couldn't understand why it fails to act as should. When debugging this problem I went down to my state machine and only then I saw that all my state constants are reset to default values.
    I never used "Substitute copy for original". I used only
    "Rename" when renaming my typedef file.
    I didn't add any items to my typedef. The only things I did are:
    - renaming my typedef enum label in the *.ctl file;
    - and "Save as.." -> "Rename..." - renaming my typedef file.
    Besides, when I did try renaming 2nd time to reproduce such behaviour: I left typedef enum label without change and the behaviour was the same.
    So, such behaviour (loosing constant values) I get TWO times.
    But after I worked around this (see 1st post) I couldn't already reproduce this behaviour.
    If I'll succeed in this one more time again, and be able to reproduce this behaviour, I'll certainly post to you my steps.
    Thanks for attention.
    Rashid.
    P.S.
    1. As to broken wires if I get it right - in your case you added new items to typedef but your case structure in state machine was not updated to contain new states handlers. If so, then it's obvious why you got broken wires. But as I didn't change the typedef itself (only renamed it), I didn't get broken wires.
    2. I wouldn't be surprised if I'd have done something in the weird way: I mean renaming by Explorer or saving, closing and so on. I was doing everything from the LabView environment. As far as I remember I didn't rename the state machine vi file at that, only typedef file. And my state machine was always opened. The only file I was opening/renaming/closing was typedef file. And as far as I remember I opened it by "File -> Open..." and not right-clicking at constant and "Open TypeDef..".
    3. I understand that my description is foggy :-) and that it's difficult to find this weird set of steps, but who knows. Anyway I appreciate your help.Message Edited by Rashid on 06-13-2006 12:03 PM

  • Renaming multiple files using automator.

    hello. i am renaming multiple files using automator. now when i import the images they are in sequential order like dscn001, dscn002 etc... i want to rename it to 001 my pic, 002 my pic, etc...
    i am choosing the sequential renaming option. after importing the pics to automator i see to it that i sort them by name so that the new names i provide are in the order of the actual file names ie. 001mypic = dscn001, 002mypic = dscn002, etc..
    however, it seems that inspite of sorting then my name they are being renamed randomly. what should i do. this is distrubing the cronological order of the pics.
    thanks in advance
    Neerav

    Well, whenever I rename in sequential order (presorted or otherwise), that is exactly what happens, so I am not sure what is causing your particular problem. If you look at the results of sorting before the rename, you should see that the items are renamed in that order - although the way that they are sorted after the rename may be different. You can easily see this sorting by just adding a prefix/suffix and looking at the differences in how the lists are sorted (sorting by name (numerically) may give you different results). Check out this Apple document to see if this is what is happening.

  • Can renamed reference files be reconnected?

    I think I may have shot myself in the foot, but I'll ask the question: I had begun editing referenced files in a project when I noticed there was a significant time skew between the two cameras that were used. I eventually used ExifTool to successfully tweak all of the internal dates but then renamed the files according to the capture date as is my norm. That of course disconnected the Aperture library references to the edited files.
    I want to reconnect the Aperture file references to the renamed files, but the "Manage Referenced Files" doesn't seem to work as I think I'd like: It shows the disconnected images in the Aperture library, but then I can't seem to connect these to new file names. The "Reconnect" button is greyed out.
    Am I hooped and have to go back to square one, or is there some reconnection procedure that I'm missing?
    Thanks// Chris Freeborn

    It may have been the EXIF tweaks that caused the problem. Aperture checksums the images, so if the checksum doesn't match, it could refuse to reconnect.
    I experimented with changing the name of referenced files a long time ago, and Aperture had no problem consolidating and relocating them. However I didn't attempt to reconnect them.
    This may help you recover the images:
    http://www.bagelturf.com/aparticles/ref/refrec/index.html
    To change times safely, try Timeature.

  • Renaming .mov file corrupts data

    Recently I used Data Rescue 2 to recover my external HDD data after an accidental partition. The result was that Data Rescue 2 found all of the video files and marked them with a generic file name in a numbered sequence. Eg: QT0023.mov, QT0024.mov ect. These files play fine in Quicktime, and once imported to iTunes also play properly. The problem is, when I rename the files in iTunes to the proper titles, the file becomes unplayable in both iTunes and by Quicktime. Quicktime reports that the file is not a movie file, while iTunes gives no error.
    Anyone?

    etnadan wrote:
    Hello
    I have one folder with several mov files each with a different name.
    I also have 2 text files in the same folder.
    ORIGINAL.txt file with the current mov filename in the folder.
    RENAME.txt file with the replace names for each file.
    Is the only content in the file the names?  Are the files actually named ORIGINAL.txt and RENAME.txt?
    In Terminal, if you enter: cat RENAME.txt, do  you get the new filename?

  • IWeb renaming my files and breaking my links!

    So I'm frustrated as to why my movies named, Sample.mov, get changed to Sample-1.mov in iWeb and I can't figure out why. It breaks all my links and I have to rename my .mov files to match or reimport the movies all over again.

    By media folder are you referring to the Media Browser where you can drag photos and movies into iWeb? Are you adding them to a Movie layout page or just a regular page?
    If you have many movie files in your site there are ways to add them so that you only upload them manually once to the server and link to them via HTML snippets or other means. These methods also lets the page load without the movie loading until the play button is selected.
    The following demo pages have examples: Opening Item in a New, Precisely Sized Window and QT Movies via Export for Web in QT Player.

Maybe you are looking for

  • Anyone know how to delete emails from trash folder?

    I have hada Droid phone for about 6 months.  When I delete emails from my inbox it goes to a "trash" file (similiar to trash file in Outlook).  It is getting full.  Any idea how to delete from trash folder.  My wife also bought the same phone but she

  • Can't edit titles or transitions in iMovie 10.0.2

    I just recently upgraded to OSx 10.0.2 and with came an upgraded iMovie. Unfortunately I am unable to edit either my transistions or titles. I have never had a problem before in all the years that I have used iMovie until the upgrade. Any suggestions

  • Problem importing translated .inx back into original indesign CS4

    I have translated an INX export from CS4 in Trados 8, and now it is not possible to import the target INX in CS4 again. I have done this many times before and it never presented a problem like this, the target INX files always opened ok in CS4 again.

  • New parameter report symbol configuration

    What is the end to end process of creating new report symbol .Do I have to create separate function module and assign in the configuration .

  • Help on Adf faces forEach

    Hi I am trying to use <af:forEach tag as below. <af:forEach var="item" items="${userBean.list}" varStatus="bStatus"> </af:forEach> public Item[] getList() { return items; Class Item { long id; String name; public long getId(); public String getName()