Save As directory

When I open a document and choose a Save As command, how can I do to the application open automatically the same directory that the original file is saved?
If I have to Save As several documents in a directory with different names, it's a tedious task to navigate to the original directory several times; for example, when I Save As Finale documents, each time I do, the Save As dialog box opens the Finale Files directory and I have to navigate to the directory I want. I remember that in the past when I opened a file and then I saved the file with another name I always were routed to the same directory. Is there any setting to correct this?

Try using the third-party utility Default Folder X 4.4.12.
What you describe is an issue with the application not the operating system.

Similar Messages

  • How do you change the default save as directory when saving a PDF file to your hard drive?

    This is the on-line help instructions on this site:
    Downloading a PDF file to your hard drive
    You can download a PDF file to the hard drive from a web page's link. Downloading PDF files doesn't require the ActiveX plug-in file to be installed. (If you want to open and view the PDF file after downloading it, you must have Acrobat, Adobe Reader, or Acrobat Reader installed.)
    To download a PDF file from a link:
    1. Right-click the link to a PDF file, and then choose Save Target As from the pop-up menu.
    2. In the Save As dialog box, select a location on your hard drive, and then click Save.
    My issue:  I want to save several pdf files (from the Adobe Reader in my browser) one at a time and each time it defaults the save as directory to the desktop and I have to go looking for the directory I last saved a pdf file in.  I got lots of directories and I wish I could change the default setting for the save as directory.  Just a minor thing but irritating as other programs usually will allow you to switch the default save as directory to one of your choosing.

    There is not a way to set the default location from all the forums i searched in the last couple days.
    Russ

  • Is there no way to change the default setting for the save as directory

    I been searching but running into a dead end, no answer.
    Thx
    Russ

    Will someone, preferably from Adobe, PLEASE give a straight answer to this question. It is such an easy question and the answers seem to be bending over backwards to avoid it.
    The question is: What must a Reader user do to change the directory to which Reader, by default, points when instructed to save a file?
    The current default is the Windows "My Documents" directory. The goal is any directory of the user's choice.
    The question does not ask how to modify or attach add-ons to Windows. It is not how to add icons to Windows save dialogs. It is simply how to adjust Reader to specify a different default save-to directory. Maybe it's a line in an INI file or other configuration file. Maybe it's a registry key. But it must be something, because Reader somehow knows how to point to "My Documents." How may the user change it?
    Thank you.

  • How to write code for save file directory?

    how to write code for save file directory?

    how to find usa timezone code using java swing?
    i have some code help me
    public class ItsInitializer {
    private static boolean s_initialized = false;
    private ItsInitializer() {
    public static synchronized void initialize() {
    if (!s_initialized) {
    // Modifies default time zone, disables Daylight Saving Time.
    TimeZone l_defaultTimeZone = TimeZone.getDefault();
    int l_rawOffset = l_defaultTimeZone.getRawOffset();
    String l_id = l_defaultTimeZone.getID();
    SimpleTimeZone l_simpleTimeZone = new SimpleTimeZone(l_rawOffset,
    l_id,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0);
    TimeZone.setDefault(l_simpleTimeZone);
    s_initialized = true;
    2.
    long timeMillis = ...;
    long time = timeMillis / 1000;
    String seconds = Integer.toString((int)(time % 60));
    String minutes = Integer.toString((int)((time % 3600) / 60));
    String hours = Integer.toString((int)(time / 3600));
    for (int i = 0; i < 2; i++) {
         if (seconds.length() < 2) {
              seconds = "0" + seconds;
         if (minutes.length() < 2) {
              minutes = "0" + minutes;
         if (hours.length() < 2) {
              hours = "0" + hours;
    3.
    import java.text.SimpleDateFormat;
    import java.util.Date;
    public class Convert {
    public String getDateTime(String pattern){
    SimpleDateFormat sdf = new SimpleDateFormat(pattern);
    return sdf.format(new Date());
    * @param args
    public static void main(String[] args) {
    Convert con = new Convert();
    System.out.println(con.getDateTime("hh:mm:ss"));
    5.import java.text.SimpleDateFormat;
    import java.util.Date;
    public class Convert {
    public String getDateTime(String pattern){
    SimpleDateFormat sdf = new SimpleDateFormat(pattern);
    return sdf.format(new Date());
    * @param args
    public static void main(String[] args) {
    Convert con = new Convert();
    System.out.println(con.getDateTime("hh:mm:ss"));
    [ November 23, 2005: Mess
    private Locale locale = Locale.US;
    private static final String[] tzStrings = {
    "America/New_York",
    "America/Chicago",
    "America/Denver",
    "America/Los_Angeles",
    Date now = new Date();
    for ( TimeZone z : zones) {
    DateFormat df = new SimpleDateFormat("K:mm a,z", locale);
    df.setTimeZone(z);
    String result = df.format(now);
    System.out.println(result);
    String date="05/19/2008 04:30 AM (EST)";
                   SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy hh:mm aaa (z)");
                   TimeZone.setDefault(TimeZone.getTimeZone("PST"));
                   long millis = sdf.parse(date).getTime();
                   sdf.setTimeZone(TimeZone.getDefault());
                   System.out.println(sdf.format(new Date(millis)));
    [ November 23, 2005: Mes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Enhancement: remember the last "Save As" directory

    It's extremely annoying and time wasting to have to keep re-selecting the directory I want rather than the default directory chosen by SQL Developer when doing a "Save As" in the SQL Script editor, as well as e.g. the Code page when looking at the SQL for an object such as a package body. This could be fixed simply by remembering the last directory selected.

    A few of the most recent locations are saved as shortcuts on the left-hand side of the the save dialogue box.

  • Visio Professional 2013, 64 bit, will not save to directory

    I've been trying to save the Visio Professional 2013 (60 day trail) but am not able to do so irrespective of the directory I try to save it in (file name: VisioProfessional_x64_en-us).  It just keeps sending me back to "retry" and "cancel"
    and doesn't allow me an opportunity to run it.  In looking at the threads here, it seems like I would have to change to a 32 bit system to get this to work.  Why then does the site ask if I have a 32 or 64 bit system.  Not a good way to start
    a trail.  Thanks, any help would be appreciated...WCG.

    Try to download Visio Professional 2013 trial version from the following link:
    http://technet.microsoft.com/en-US/evalcenter/hh973399?WT%2Eintid1=ODC%5FENUS%5FFX103791368%5FXT104000916
    Let Akamai downloader management to control the save directory. Check this thread with the similar topic.
    http://social.technet.microsoft.com/Forums/en-US/354a5369-70a4-480d-b6fd-1fc464112b68/visio-trial-download?forum=visiogeneral
    Tony Chen
    TechNet Community Support

  • Save to directory vi library is located

    Is it possible to have a VI save to whatever location it resides in? 
    I have a top level VI that runs from a library and this library is moved on different machines and different locations depending on who is using it.  I would like to have the data acquired by running the code to be saved to whatever directory this library resides in.  Can this be done easily?
    - John
    Running Labview 7.1 Express on Win XP

    Use the Current VI's Path Constant (File I/O->File Constants) to get the path, strip the path twice to get the llb's directory.
    2006 Ultimate LabVIEW G-eek.

  • Made changes and selected 'save' but it will not save in directory

    First, let me say I am new to Mac and iWeb in general so I have lots of novice questions, but so far using my Mac for video-related things and working on my website has been great! (Should have switched to mac long ago)
    My question/problem: I built a website using iWeb08 and used Cyberduck (thanks to this forum) to FTP it to my domain. Everything was fine. Today, I changed a page on the site and from the iWeb File menu selected 'Save.' I then went to upload (with Cyberduck) to my domain and noticed when choosing files that the changes had not been saved. I opened iWeb back up and the changes were there, but they are not making it to where I saved the webpage on my computer, so therefore Cyberduck was uploading the old version of the website. What am I doing wrong??
    Thanks in advance!
    -Mike
    Message was edited by: FisheyeSC78

    Today, I changed a page on the site and from the iWeb File menu selected 'Save.'
    Save doesn't do what you think. You need to do File > Publish to Folder for any of your changes to be reflected in what you upload via ftp.

  • Change default save files directory

    I'm trying to switch where files are saved on my computer but Firefox just ignores the new directory and keeps saving in the same place instead of what's set in options/downloads/savefilesto. How can I make it so that my downloads go in a specific folder?

    ccau, You wrote, <br> ''I set the download location to e.g. 'e:\temp\' (or anywhere else with at least one non-root path component), the location is honored. If I use e.g. 'd:\', 'e:\' etc, it is ignored.''
    Mozilla developers are working on the bug introduced in Firefox 27 that prevents selecting a "root" directory as the download folder (you can vote for the bug to keep track of the progress)
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=958899 Bug 958899] - Under Windows, cannot use a root directory as the destination for downloading

  • Can't change the "save, checkout" directory for Attachments

    Users affected are are WindowsXP Power Users. They are unable to change this directory. They can enter any location desired, but clicking on the attachment button in a new mail message does not reflect the directory User specified.

    scottcooper614,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Bug: bad default save directory

    When saving files (e.g. a stored procedure definition) in "File ... Save As", the default directory is always "C:\windows\system32\config\systemprofile". That's stupid and senseless. What's worse is that a changed directory isn't remembered, it always defaults to that location, wasting time every time.
    Suggested fixes:
    1) Make the default the working directory when sqldeveloper is invoked. For example, the one specified in a shortcut.
    2) If the "Save as" directory is changed by the user, then remember it and use the same location next time, or at least through the current session

    I see this in 3.2.20.0.09.
    When attempting to "Save Package Spec and Body", the default is "....sqldeveloper/bin", and there is no way to change the default (one can change the directory for the current operation, but the problematic default will be there the next time one attempts the operation).
    This is very annoying.
    I don't even see where it was intended to be able to configure this. Under "Tools->Preferences" I don't see anything that looks like it would configure it, in sqldeveloper.conf nothing seems to be useful, and scanning the results of "Help->about->Properties" suggests that the "VMOption" of "user.dir" might be relevant, but changing that seems to leave the program inoperable.

  • Create Home Now in WGM does not create home directory until...

    We are using newest ver. of Leopard on our Xserve and have some issues with Workgroup Manager. We can create new users and specify the location of their HOME, however, when we try to Create Home Now and Save, the directory does not get created! No errors though, just silence and no action. Tried many times and no go.
    UNTIL.... We log in with than new username directly into the server using Remote Desktop. Once logged in to Xserve as local user, the Home Directory magically appears.
    What is happening?

    Not sure what's happening - you can check the logs for clues.
    You can also use createhomedir -a That will create home dirs for all users (and will not touch existing home dirs)
    See here for more info
    http://support.apple.com/kb/TA21050?viewlocale=en_US

  • No drop down menu in Desktop & Screen Saver

    I just transferred everything to a new Macbook Pro (2011 model) from my old one (early 2010) model, and when I access Desktop and Screen Saver to look at my background images, there is no longer a drop down menu for fitting the images to screen, even though I could do so on my last Macbook Pro with the same custom images I'm using now.
    Any ideas?

    Okay, it's resolved.  For some reason, having the Custom Wallpaper folders in my actual Desktop & Screen Saver library directory did not work, so I moved them to my User/Library/Pictures directory and now it works fine.
    But it would be nice to be able to keep desktop backgrounds in the same default directory as all of the other backgrounds...

  • Normal Save As Window

    It's kind of a pain to have to hit browse every time just to get to the normal windows Save As window.
    In this particular instance, I'm working on a daily radio show and I would normally Save As and just start typing the date for the name (201111 would bring up a list of all files starting with 201111, so I would know what the last date is).
    It may have something to do with the Mac/Windows integration, but maybe just use whatever default is there for the OS or give an option to use the new window or OS window?
    JJ

    > on mouseUp me
    > folder = baGetFolder( the moviePath, "Save as..", 1+2,
    "Select a folder", -1,
    > 0 )
    > ok= baCopyFile( the moviePath&"word.doc" ,
    folder&"word.doc","IfNewer" )
    > end
    >
    > Firstly, how can I save the directory choosen?
    > and how can I bring up the
    > "prompt message" asking whether user want to replace
    the file or not?
    Store the folder they choose in a global or property variable
    and
    reference it when files need to be copied. Perhaps something
    like (watch
    out for unintentional line breaks):
    global gLocalFolder
    on mouseUp me
    gLocalFolder = baGetFolder( "", "Save as..", 1+2, "Select a
    folder",
    -1, 0 )
    if gLocalFolder = EMPTY then exit -- user cancelled
    tDestination = gLocalFolder & "word.doc"
    if baFileExists(tDestination) then
    -- prompt to overwrite
    tChose = baMsgBox("The file 'word.doc' already exists."
    &RETURN&
    "Do you want to overwrite it?", "Overwrite...?", "YesNo",
    "question", 1)
    if ( tChose = "Yes" ) then
    ok = baCopyFile( the moviePath & "word.doc",
    tDestination,
    "IfNewer+")
    if OK <> 0 then
    -- error copying file - see the docs for numbers and their
    meanings
    end if
    end if
    else
    ok = baCopyFile( the moviePath & "word.doc",
    tDestination, "IfNewer+")
    if OK <> 0 then
    -- error copying file - see the docs for numbers and their
    meanings
    end if
    end if
    end

  • Active Directory Groups - Domain Users Group

    Using the AD resource adpater, I am able to assign groups and remove groups, but I noticed that the Domain Users group does not appear in the list of groups the user belongs to. Looking AD the user does belong, but in IDM it does not list this group membership. Is this normal ?

    Thanks for the reply. I noticed there are quite a few issues with trying to UNC map to any share outside of the local MXE3500. I'm also seeing some issues with FTP watches on an EMC NAS, that has been FTP enabled. The problem I'm seeing now is that the watch will only work, if the watch is at the root level. If I add a file path, its accepted as valid when I save the directory watch, but looking at the fa.log its appending the last directory on twice.
    So if my watch is looking at FTP Directory Path of: lifelink
    The fa.log shows: .../lifelink/lifelink/
    the word lifelink is displayed twice, causing an error, stating: "Error checking file size delay"
    thanks,
    Dave

Maybe you are looking for

  • How can I change the iPhone backup location on my Mac to an external hard disk?

    Thank you.

  • Has anyone had issues with the most recent Yosemite update

    I installed Yosemite October of 2014 mainly because I needed to update itunes to continue to help my daughter maintain her music files. Anyway the reason hardly matters. My computer and Yosemite did not get along. Posted up a file of my computer cond

  • Uganda Currency in PO

    We are raising PO using Uganda Shillings currency (UGX). The quantity is 100 and the price per each quantity is 100 UGX. So the total amount is 10000 UGX. In print preview of PO, under Net amount the amount shown as 10000 UGX correctly but the amount

  • No start-up display

    When I switch the laptop on, I can hear the fan, the wifi and caps lights come on but the display remains blank. This happened about two weeks ago so I did a hard reset and that worked. When my laptop, which is a pavilion g6-1112sa model that I've on

  • Atan2

    i have no clue how to use this function. i'm trying to code the math for potential fields for a bot program for a class and the potential field write up i'm basing my math off uses the atan2 because it gives the correct angle of the quadrant. "Find t