Filename changing

I don’t remember making any changes to my preferences so am at a loss as to why suddenly in recent weeks if I save a .jpg to my downloads folder or to my desktop when I upload it to another site the Saved As information shows up as:
/Users/myfullname/Desktop/the saved name.jpg
Not wanting to post anything on public sites that gives this sort of information I am here to ask whether it is possible change whatever so as to show only the filename I give to the image without the personal information.
Any advice will be appreciated.

Thank you Kappy for your reply.
I followed your link and can see how to change my name using ACCOUNT via System Preferences but what confuses me is why, suddenly, I am seeing it in the uploaded file path for the first time in the six months I have owned my MacBook
I use Firefox 3.5 as my main browser to down load images, save them as ......jpg to either my user>library> download folder or, more usually to my desktop where they show up with only the name I have given them.
It is not until I upload it that my user>full name is added to the file name. I can see nothing within Firefox preferences that allows me to change the file name information that appears
But, and I realize I should have done this before I posted my question, if I use Safari only the name.jpg appears.
I guess I can avoid having to change my account name simply by using Safari, but would be interested to know if anyone can explain why Firefox adds my user>name to the file path not if I use Safari.
What you are seeing is the full path to where the file is located on your hard drive. You should never use your full name for your account username or short name. Perhaps you should consider changing it to something else. See Macworld | Changing the short username in Leopard.
When you view the file after you have uploaded it to another site is the full path included along with the filename? If so, then what application do you use to upload the file and have you checked if it's configured to include that information.
Mac Pro 2.66 Ghz; MBP Unibody; MBP C2D 2.33 Ghz; MBP 2.16 Ghz   Mac OS X (10.5.7)   iMac C2D 17"; MB 2.0 Ghz; 80GB iPod Video; iPod Touch; iPod Nano 2GB  

Similar Messages

  • Filename change history available

    Does OS X store a list of modifications done to the filename of a specific file ?
    For example I created a file named "myfile.ext" (regardless by which application), then change the original name to "myfile2.ext", "differentname.ext" and so on.
    Is there a way to track such filename changes in something like a history view or stored in an attribute (chmod file modes, ACL, whatever) ?

    Not that I know of.
    Francine
    Francine
    Schwieder

  • FTP filename changes

    Hello,
      In a FILE to FILE scenario we would like to change the name of the file.
    let's say filename on the sender side is 'datafile' and we would like it to be 'infodatafile' on the receiver side.
    So add the 'info' string to the filename.
    Anybody knows if this is possible ?
    Thanks

    Hi,
    I guess ur just doing File to File scenario without IR configuartion..in that case ID when u r creating communication channel for File receiver there itself in file name scheme u need to put "infodatafile"
    and in sender file communication channel put file name scheme as "datafile"
    so file with datafile is picked up and file with infodatafile is created.
    Regards,
    Manisha

  • Mass filename changes using terminal? How?

    Hello,
    I recently put a Linksys NAS on my network. Unfortunately, the EXT3 format used on the disks does not like filenames with special characters such as "/" or "?". So I cannot copy files from my PowerBook to the NAS with these characters in their names.
    A search of my hard drive shows 800+ files with these forbidden characters.
    Is there a way to use terminal (or any aspect of OS X) to do a mass change of these characters to a more acceptable character (i.e. changing all instances of "/" to "-")?
    Thanks for the help.
    Jim

    Jim
    tcsh: Invalid null commandAh, you're using tcsh. Bad news! I'm sure it could be made to work, but I've switched to bash because it is better for this sort of stuff. Gary will tell you to switch to zsh, but for now bash will do. I just tried the command as posted and tcsh complained loudly!
    First point: often when you try to copy/paste from a browser window, you get an extra space appended to the line. It often doesn't matter, but it could here (may explain the "tcsh: Invalid null command" message). So copy the commands into a TextEdit document, which you have changed to Plain Text from the Format menu. Then be sure not to include any trailing space.
    Second point, we'll scrap the use of sudo since it is only your Home directory that you are interested in.
    Third point: as I said, we'll use bash. The prompt will change to a '$' instead of a '%'. When you've finished, you can return to tcsh with a plain exit command.
    So, copy and paste the following into the Terminal window, one line at a time, with a return after each line:
    <pre>bash
    find -d ~/Documents \( -name "?" -o -name ":" \) -exec echo 'mv "{}" `echo "{}" |
    sed -e "s^\?^_^g" -e "s^:^-^g" ` ' \; | sh</pre>This should work—it did for me!
    Note:
    it returned a > prompt with nothing else on the line.It will do this after the second line above—it is an invitation to complete the command

  • JFileChooser: filename changes when i change directories

    Hi,
    I'm having a problem with a file chooser : when changing directories (change from default directory to dir of my choice), the "Filename:" text gets changed too.
    Here is what is actually happening :
    - I use setSelectedFile(<default file>) on my file chooser before opening
    - it opens with <default file> in the Filename field.
    - I switch to a different directory by double clicking within the area which shows the directories and files.
    -->> problem : my filename takes the name of the directory which i double clicked.
    ** surprisingly enough , when i select a directory from the drop down list of the filechooser the above problem doesnt happen .
    Below is my code. cud someone tell what is missing/wrong. plz treat this as urgent , i got to ship the code after 4 hrs
    Thanks in advance for any help, i will more than glad to offer duke dollars for this one.
    KG
    public class StepSaveFileDialog extends JFileChooser  {
        String fileExtension = null;
        JFileChooser fileDialog = null;
        String reportName = null;
          public StepSaveFileDialog(String fileExtension,String reportName) {//used to get the fileextension and the reportName
            this.fileExtension = fileExtension;
            this.reportName = reportName.replaceAll(" ","_"); 
          public String getSaveDialog() throws IOException {
            String filePath = null;
            fileDialog = new JFileChooser();
            fileDialog.setDialogType(JFileChooser.SAVE_DIALOG);
            fileDialog.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            fileDialog.setAcceptAllFileFilterUsed(true);
            fileDialog.setFileFilter(new StepFileFilter(this.fileExtension));
            String dfltFilePath = ReportEngine.getDefaultReportSavePath();
            File selFile = null;
            String date = new StepDate(System.currentTimeMillis()).toString();
            date = date.replaceAll("/","");
            reportName = reportName + "_" + date;
            if (dfltFilePath != null) {
                selFile = new File((new File(dfltFilePath)).getCanonicalPath() + "\\" + reportName);
            }else{
                selFile = new File(reportName);
            fileDialog.setCurrentDirectory(selFile);
            fileDialog.setSelectedFile(selFile);
            int option = fileDialog.showSaveDialog(StepMainFrame.getInstance());
            if (option == JFileChooser.APPROVE_OPTION) {
                selFile = fileDialog.getSelectedFile();
                    File reportFile = new File(selFile.toString());
                    boolean success = reportFile.createNewFile();
                    if (!success) {
                        fileDialog.show();
                        fileDialog.setVisible(true);
                        int overwriteOption = JOptionPane.showConfirmDialog(
                                fileDialog, selFile.getAbsolutePath()
                                        + StepStatusMessage.PROMPT_FOR_OVERWRITE);
                        if (overwriteOption == JOptionPane.NO_OPTION) {
                            filePath = getSaveDialog();
                            return filePath;
                    filePath = reportFile.getAbsolutePath();
            return filePath;
    the ReportEngine.getDefaultReportSavePath() is like this
    private String getDefaultReportSavePath() {
            Properties prop = new Properties();
            String dfltFilePath = null;
            try {
                File file = new File(CONFIG_FILE);
                FileInputStream inputStream = new FileInputStream(file);
                prop.load(inputStream);
                inputStream.close();
                dfltFilePath = (String) prop.get("step.reportFilePath");
            } catch (IOException ioe) {
                StepStatusBar.getInstance().writeErrorMessage(ioe.getMessage());
                StepLogger.getLogger().fatal(ioe.getMessage(), ioe);
            return dfltFilePath;
    }the fileFilter is like this :
    public class StepFileFilter extends javax.swing.filechooser.FileFilter {
        String fileExtension = null;
        public StepFileFilter(String fileExtension) {
            this.fileExtension = fileExtension;
        public boolean accept(File f) {
                return f.isDirectory() || f.getName().toLowerCase().endsWith(this.fileExtension);
        public String getDescription() {
            return this.fileExtension;
    }

    You will still be able to navigate through the area
    where the files and directories are displayed with
    FILES_ONLY. Clicking on a file will cause its name to
    appear in the File Name field, while double-clicking
    on a directory will navigate into it.
    FILES_AND_DIRECTORIES causes the names of both files
    and directories to appear in the File Name field when
    they are clicked.
    MikeHey Mike , thanks a lot .... it worked

  • Filename changed on import

    a new problem tonight: I was importing the photoshop-edited version of some images back to the original iPhoto library (to have them all in one place for burning to CD), but the imported versions now all have different filenames.
    Normally I can tell them apart (aside from obvious cropping and editing differences) by their filenames: the original looks like "DSC_1234.jpg" and the imported edited version looks like "DSC_1234" minus the .jpg.
    Tonight, DSC_2956.jpg was opened and edited in photoshop, saved to a different folder as "DSC_2956.jpg", then imported back to iPhoto as "DSC_2958".
    Anyone ever had this problem?

    BTW, I am using iPhoto 2.0.1.

  • Acrobat pdf export (printing) filename change

    In exporting (printing) pdfs from my CAD programs (AutoCAD / Bricscad), how can I prevent acrobat from adding the layout name to the filename i.e. "Model"?  If I am in a drawing with the filename 123456.dwg, printing thru acrobat results in 123456 Model.pdf- what I desire is 123456.pdf

    I agree, particularly if you are using an "export" feature. If you use Acrobat then you would either use the PDF Maker option if available (typically called create PDF now) or would actually print to the Adobe PDF printer. I suspect you are using a feature of AutoCAD, but am not a user of that package to confirm this.

  • App for mass filename change

    Can anyone recommend an application for making "smart" mass file name changes?
    Example:
    I want to find an application that will:
    1.  Search through file names for a year.
    2.  Put a particular word in front of the year (without wiping out the year).
    I have Massreplaceit, but I do not think that it would do this.
    Can anyone recommend a different app?
    OS 10.8 imac
    Thanks.
    mac

    Hi, try this one...
    http://www.publicspace.net/ABetterFinderRename/

  • IDOC filename change

    Dear All,
    We have configuration for Idoc in our SAP 4.7 as ,
    - While creating billing document - VF01 (for a specified output type), Idoc is     created and saves in application server path.
    - For naming convention of Idoc, We have used FM - "EDI_PATH_CREATE_CLIENT_DOCNUM"
      and Physical directory path is mentioned.
    - In Txn.NACE, for the given output type, the program is - RSNASTED and form     routine is "EDI_PROCESSING".
    The idoc is creating successfully. But I want to concatenate ".TXT" with the idoc name.
    For eg:the created idoc name in physical path is "O_400_0000000000038040", but I need "O_400_0000000000038040.TXT".
    Could any one help me on this regard ?
    Best Regards,
    S.Sridhar

    Dear Martin,
    Thank you for your timely help.
    Problem solved. I rewarded a points to you.
    Thanks and Regards,
    Sridhar S

  • Attachment filename changed to att000

    On firefox 13.0.1 running on Mint Linux
    It is not on the machine from which I send that request.

    There is information available about Hotmail.
    * http://windows.microsoft.com/en-US/hotmail/help-center
    * http://email.about.com/od/hotmailtips/qt/et_hotmail_supp.htm

  • Applescript: open Pages doc from Templete, change filename and replace text

    Hi!
    I just got started with applescript and i want a script that does the following:
    1. open "choose from list" dialog to choose the topic of my document
    from 4 possibilities (here for example A, B, C, D)
    2. open document from TemplateXY
    3. set document name with date and topic (dd.mm.yyy) "16.02.2011 - A"
    4.inside of document: replace text "date" with the currend date (dd.mm.yyy)
    and the text "topic" with the topic chosen in (1.) "A"
    this is what i already did:
    here as colored screenshot:
    http://i55.tinypic.com/2mnhxkm.jpg
    set datum to do shell script "date \"+%d.%m.%Y\""
    --choose topic:
    set chosentopic to choose from list {"A", "B", "C", "D"}
    --text "topic" becomes replaced throug variable topic
    set searchstringT to "topic"
    set replacestringT to chosentopic
    --text "date" gets replaced by currend date (variable datum)
    set searchstringD to "date"
    set replacestringD to datum
    --open pages, define filename & do search&replace of the strings defined above
    tell application "Pages"
    activate
    set DocName to datum & " - " & chosentopic
    set (every text where it is searchstringT) to replacestringT
    set (every text where it is searchstringD) to replacestringD
    end tell
    the "choose from list" dialog works and the variables like topic, datum and the search&replace strings get defined as well
    my problems are:
    i only get an error that the text could not be replaced
    i dont know how to get a new document from a template and how to get its filename changed
    i really just started doin things with applescript for a day so i hope you can help me
    regards
    DaNylz
    Message was edited by: DaNylz

    Try something like this:
    set myFoundItems to change text text of all page items of pages 3 thru 5 of document 1
    Shane Stanley <[email protected]>
    AppleScript Pro Sessions <http://scriptingmatters.com/aspro>

  • Can I change Filename from within Lightroom?

    I am in the Trial Period with Lightroom, having just used it for two days. I assume that one must be able to change a photo's filename from within Lightroom, but I surely can't see how to do it, having looked in the Help file and through all the menus.
    Here's what I'm trying to do. When I take photos, I create a descriptive filename that tells me what's in the image. Then I import a big batch. What I want to do is to create slideshows from those images in a different order from the importing order: maybe it's slide 23, then 15, then 10, etc. I was hoping to do this by sticking sort numbers on the front of the filenames (changing the filenames), and then sorting on the filenames to create the desired slideshow sequence.
    But, I can't find a way to change the filename within LR. If I do it outside LR, then I lose whatever work I've already done on the images.
    Am I overlooking some obvious better way to do this?
    Thanks
    Bob Chapman
    I'm running LR 1.2, Windows XP, 2 GB RAM, big disks.

    Even easier, select the image or images and press F2 to rename.<br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Hi Bob,<br />><br />> To change the filename for an individual file select the file from grid <br />> view and look over at the Metadata panel on the right side of the screen. <br />> Click on the filename in the metadata panel and it should change <br />> appearance to show that it can now be edited. Type Away!<br />><br />> BTW, If you are planning to make the slideshow using the LR Slideshow <br />> module, the easiest way (for me at least) is to put the slides that are <br />> going into the ss into a Collection. (Yep, time to read up on collections <br />> :) Then you can manually order the slides however you want, select them <br />> all, and use the ss Module to create the ss.<br />><br />> Enjoy!

  • How do i get the mp3 information in my music folder to match the changes i make in itunes?

    So basically, I am very OCD about the organization of my Itunes music collection. Every time I add a song I edit the info so that the artist, track name, album art, etc. are correct and follow the format I use. My Itunes music folder, however, is a complete disaster. Songs that I've imported from CDs are impossible to find because the proper artist and track names that I fix in itunes are not altered on the actual mp3 file. Even songs that I've purchased online frustrate me because I have a preferred method of organizing collaborative works that's different from the way the songs are initially labeled. Ultimately, I have a ton of music that would be a nightmare to sort through if I did so outside of Itunes.
    I've looked this up quite a few times and honestly haven't been able to find any advice that can solve this problem. Perhaps I haven't been looking up the right question, but I hope what I'm trying to get across now makes sense. I believe what I need is for the id3 tags to be permanently changed when I alter information in Itunes.
    I'm running OS X Lion 10.7.5 on a MacBook Pro.
    I would be extremely grateful if anyone knows a way I can solve this problem, even if the only data I'm able to alter is the artist and track name, that would still be a significant help.
    Thanks in advance !

    Unfortunately, that's the only method Keep Media Organized uses. It's not as simple as renaming the file: iTunes may be unable to locate the file if the Filename changes, and you locating each file manually for iTunes is probably not an option.
    However, now you have most of your library organized by iTunes, if you could stay on top of manual organization, you can uncheck this option and google one of Doug's scripts (perhaps "Doug's iTunes Script Append Artist to Filename"—you'll want to check version compatibility and whatnot with such scripts, as many of them are rather old). Your new additions to your library will not be organized automatically, though. I personally prefer iTunes organizing my files, as I am liable to procrastinate to an unholy degree when faced with organizational tasks!

  • CS3 Won't change extension in Save As

    Hello,
    I've run into a rather frustrating problem that I've been trying to fix all day with no luck.
    I recently formatted my computer and reinstalled Photoshop CS3. However when attempting to save a JPG from a PSD, it dosen't allow me to. What happens is that I can select JPG from the drop-down options. However the extension in the filename bar dosen't change from xxx.psd to xxx.jpg. It simply stays as xxx.psd. If I still hit save it saves as a PSD.
    I've tried changing the file extension in the save menu and also in the explorer after I've saved. However if I do the first option I can't batch process because it just continiously overwrites the same JPG file. The section option also removes any possibility of doing patching since I have to do one at a time.
    So just to confirm. I am saving flattened, 8 bit, RGB files. So that isn't the problem. I also have the option to show extensions enabled in the folder options so I know it's not a matter of a hidden extension or double extension. I've also tried saving into various folders with no success. I have also tried a complete uninstall and reinstall of PS. As well as doing the repair option. Neither worked.
    I can't think of anything else to try so I'm really hoping someone can help me out. It's incredibly time consuming to have to individually save each file as a JPG when I'm working on 50+ files at a time. Thanks for your time and help!

    Sorry, I thought I might be onto something...
    What you're experiencing does not normally happen to most people.
    Just to be absolutely clear we're communicating, I did this:
    1.  I opened Photoshop CS3.
    2.  Opened an existing PDS file of mine named:  BluesInACR.psd
    3.  Image - Mode - 8 Bits / Channel.
    4.  The document window title says:  BluesInACR.psd @ 100% (Camera Raw, RGB/8)
    5.  File - Save As, changed Format from Photoshop (*.PSD;*.PDD) to JPEG (*.JPG;*.JPEG;*.JPE)
    6.  The instant after having chosen the JPEG format, the filename changed to: BluesInACR copy.jpg
    7.  After I saved the file as a JPEG, the document title still reads: BluesInACR.psd @ 100% (Camera Raw, RGB/8)
    What does your Save As dialog say in the bottom left corner?  Mine has a button that says [ Use Adobe Dialog ] (implying I am using the OS dialog).
    -Noel

  • I accidentally renamed all the file names on every single one of my 24000 photos in aperture using batch change ( keywords, metadata etc) Can I undo this action or will I need to restore from an earlier time machine/capsule backup?

    Undoing a batch metadata filename change in Aperture3?

    You're welcome.
    A second copy of the iPhoto library on a second drive is always good. I once lost my backup drive and the system drive at the same time, because a lightning caused a power surge that killed both my macs system drive and the connected backup drive. I was lucky to have a bootable clone of the system drive as a second backup.
    I like this version of the quote you cited:
    A little learning is a dangerous thing;
    drink deep, or taste not the Pierian spring:
    there shallow draughts intoxicate the brain,
    and drinking largely sobers us again.

Maybe you are looking for

  • IPAD1 is no longer recognised by my MAc. Itunes freezes when I restart everything. My  iphone 4 works fine. How do i fix this?

    My IPAD1 is no longer recognised by Itunes on my Mac deskop. I have follewed the steps recommended by Apple Support aand sometimes after shutting everything down & restarting Itunes briefly recognises my ipad before freezing. Thereafter it sometimes

  • How to check actual CO-PA assessment cycle result

    Hello everyone! I understand cycles as the programs used to transfer data from FI to CO. It selects FI postings by cost center and primary cost elements (GL codes) then to secondary cost element and value fields in CO. Now my question is, how do I ch

  • Cant upgrade from Acrobat 9 Pro to Acrobat 9 Pro extended

    Hello everyone, I purchased the upgrade from Acrobat 9 Pro to Acrobat 9 Pro Extended, but get an error when I try to install.  The error says "Setup has detected that you already have a more functional product installed.  Setup will now terminate.". 

  • Commitment reduction by down payment

    Hello experts, When we enter a down payment request with a purchase order reference, it reduces the commitment until the invoice verification. During this time it is possible that the values decommit be used in other operations. How could we do in or

  • Releasing PO

    Hi all, I have an issue. I am creating a vendor Purchase Order through ME21N. I am checking it and yet found no error messages as such. However, when I am trying to manually release it through ME28, I am not able to do the same. Error remains "No sui