Where within CS6 Photoshop will I find the folder and file to clear the scratch disk on my harddrive ???

Where is the folder (and file) to erase the scratch disk ...

There is no such folder.
The scratch file gets erased as soon as you close the file that was using it.
The rule of thumb I follow to figure out scratch space says to figure on 50 to 100 times the size of your largest file ever multiplied by the number of files you have open.  I have seen the scratch file exceed 800 GB once, an admittedly rare occurrence, but it often exceeds 200 GB when stitching large panoramas and the like.
As an example—and stressing that I'm aware that others have even more scratch space than I do—I keep two dedicated, physically separate hard drives as my primary and secondary Photoshop scratch disks and a lot of GB free on my boot drive for the OS.  I also have 16 GB of RAM installed.
Additionally, if you only have a single HD, i.e. your boot drive, you'd need it to be large enough to accommodate both the swap files of the OS as well as Photoshop's scratch.

Similar Messages

  • I have a new computer and I want to make it my home device for I tunes. I have home sharing, and all of the music and files are on the new computer. Now what do I do to make the new computer the home computer for Itunes?

    I have a new computer and I want to make it my home device for I tunes. I have home sharing, and all of the music and files are on the new computer. Now what do I do to make the new computer the home computer for Itunes?

    The computer (windows platform) where I initially began using Itunes has four other computers/devices that are shared with it. All four of the other computers show up in my account, and can be managed. Or I can remove them. But on the new computer that I want to be my base computer (home if you will). The computer I want it to replace, when ITunes is open, has a tool bar, with various functions. All of the other devices are linked to that computer in ITunes, under Home SHaring. The new computer, shows the downloads via Home Sharing, but it does not show/have any tool bar.
    I want to activate the new computer to be the computer via ITunes where all of the devices are linked to it as the base for ITunes. And, I don't know how to make that happen.
    I hope that makes sense.

  • In logic X I am trying to normalize but the track and file option in the edit window is not there at all just the drop down for pointer eraser etc. Any ideas? Thanks!..

    In logic X I am trying to normalize but the track and file option in the edit window is not there at all just the drop down for pointer eraser etc. Any ideas? Thanks!..

    Total life saver. Thank you

  • Since updating Firefox as suggested, when I 'save as' a jpeg, it automatically finds the folder and it's always the wrong folder. How can I disable this feature and go back to the original mode where it remains in the folder I choose until I change it?

    For example, I saved a jpeg named 'picasso the guitarist'. I have folders titled A to Z. When I click 'save as' it might open the 'K' folder and I have to manually search the 'P' folder for 'Picasso' and save file. The most irritating thing is, when I 'save as' another jpeg of say 'pieter mother & child' it goes to another folder and does not remain in the 'P' folder, rather it goes to the 'X' folder or some other. This didn't happen before the last upgrade. Can I disable this new 'help' feature that is taking more time than the old version?

    Current Firefox versions remember the download directory based upon the URL, so if the URL changes then the default folder may be chosen if there hasn't been selected a download folder before for that server.
    *[[/questions/889958]]
    *[[/questions/882443]]
    Bug 536503 - Last downloaded-to directory should be remembered on a site-by-site basis
    Firefox 11 will have a workaround by providing a pref (browser.download.lastDir.savePerSite) to disable this feature.

  • Cant get list of files from a folder (even though the folder and files are created with the same app)

    Ok so each character rolled with my app gets saved as an html file in a folder i create on the sdcard called RpgApp
    the code to do this is 
    private async Task saveToHtmlCharacter(string name)
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault(); //Windows.Storage.ApplicationData.Current.LocalFolder;
    var dataFolder = await sdcard.CreateFolderAsync("RpgApp",
    CreationCollisionOption.OpenIfExists);
    var file = await dataFolder.CreateFileAsync(name+".html",
    CreationCollisionOption.ReplaceExisting);
    using (StreamWriter writer = new StreamWriter(await file.OpenStreamForWriteAsync()))
    writer.WriteLine("<html><head><title>Character File for " + z.charNameFirst + " " + z.charNameSecond + "</title></head><body>");
    //trimed for the post
    now this as i say works perfectly and i can confirm that the files show up in the "RpgApp"folder
    now the next step is to have the app read the names of each of those html files and create a seperate button for each one named for the filename and with the filename as content (later i will link them up to load the html file they are named for in a webbrowser
    panal)
    here is the code that *should* do that
    private async Task readFiles()
    z.test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    IReadOnlyList<StorageFile> fileList = await folder.GetFilesAsync();
    //z.test.Add("dummy");
    foreach (StorageFile file in fileList)
    z.test.Add(file.Name);
    public async void buttonTest()
    await readFiles();
    CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
    await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    foreach (string name in z.test)
    Button button1 = new Button();
    button1.Height = 75;
    button1.Content = name;
    button1.Name = name;
    testStackPanal.Children.Add(button1);
    now i say should as what i get is an error of "A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.ni.dll" (2 of them in fact one after another)
    more detailed error is at http://pastebin.com/3hBaZLQ9
    now i went through checking line after line to find the error and line that causes it is:
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    in the readFiles method
    i checked to make sure the case is right etc and its spot on, that IS the folder name, and remember my app creates that folder and creates the files that are inside that folder (and only files my app creates are in that folder) so it should have access
    im 100% stuck its taken me all day to get the files to save and now i cant get them to list correctly
    I have tested the button creation function with fake list data and that worked fine, as i say the error is when i tell it to look at the folder it created
    all help most greatfully recieved

    this was actually solved for me on another forum thread 
    async Task<bool> continueToReadAllFiles(StorageFolder folder)
    if (folder == null)
    return false;
    if (folder.Name.Equals("RpgApp", StringComparison.CurrentCultureIgnoreCase))
    var files = await folder.GetFilesAsync();
    foreach (var file in files)
    test.Add(file.Name);
    return false;
    var folders = await folder.GetFoldersAsync();
    foreach (var child in folders)
    if (!await continueToReadAllFiles(child))
    return false;
    return true;
    public async void buttonTest()
    test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    var folders = await externalDevices.GetFoldersAsync();
    foreach (var folder in folders)
    if (!await continueToReadAllFiles(folder))
    break;
    //.... commented out
    ...now i say solved this is more a workaround...but it works.
    I would love to know why we cant just scan the RpgApp folder instead of having to scan the whole dc card and disregard all thats not in the RpgApp folder

  • Generate report to the screen and file (pdf) at the same time

    Hello guys,
    I am trying to distribute a report at the same time to the screen and the file. I cannot get it to work. In the help file it says that I could specify destinations in the 'Distribution Dialog'. When I enter there two destinations the report does not run even to one of them. If I enter one destination it would run perfectly. The other option is to create .dst file. I created it. Where should I specify the file location? Is it a desname?
    Any help would be appreciated,
    Thanks,
    Sonya

    Distribution is a batch process. You can't combine distributing a report to file/printer/email/etc. and running to screen.
    Each entry in the distribution dialog will be executed the same as the entry in the .dst file.
    If you want to run with a .dst file then you'll need a command line argument like:
    rwrun60 <normal command line args> distribute=yes destination=<filename.dst>

  • Is there a document that describes the folder and file usage.  And a sample liquid templated site

    I'm an experienced web developer, and used template engines before (smarty for one) but I need to see clearly what is the appropriate methods when using Liquid templates.  I downloaded my developer starter site but I'm not sure that is what I need.  Any clarify would be helpful.I I need to see exactly where everything is placed.   I'm sure this is partly due to the transition of the templating engine to liquid.

    Hi Maria,
    Did you ever get any help with this?
    Eanass

  • Can't find shared folder and files on TC, and internet don't work through it.

    Hi all,
    I use iOS 10.9.5 and TC 802.11AC 2TB. I have used it for both Time Machine and as a shared HD for about a year without problems. Now all the sudden the folder with shared files has disappeared. It's still seems to work with TM. It shows up in network and I can see the "data" folder but not the one I have created. I also used to route internet through the TC but this function has also ceased to work. I've tried everything, reebooting, visiting every forum and tried to fix this in a number of ways but now I have no clue what to do...
    Please help
    PS. No one else hace accessed the TC. I have not deleted any files either.

    Unfortunately, you are basically telling us that you have already "tried everything", but we really have no idea what you might have done......and we don't want to waste your time asking you to do the things that you have already done.
    Can you tell us what troubleshooting steps that you have already performed?
    If you do not want to go through that process again, my suggestion would be to reset the Time Capsule back to factory default settings and then set it up again and get it working with an Internet connection.
    Then, erase the Time Capsule drive and start over again with new Time Machine backups.....and......restore the shared files to the Time Capsule disk from your backup.

  • What's the path and file name for the program to make window xp recovery cd?

    I need to replace a hard drive, so I  have to make a set of CDs to install windows XP,  but in ACCESS IBM, I cannot find the program to make window xp recovery cd as instructed on the website. where can I find it? Thanks
    solved, thanks anyway. mine is T43, the hard disk got bad setctors now, so I got a new disk to replace it, so I need to install xp first, that's what I need, but there are no xp installation cd now and I can not find the program to make the cd. I downloaded  xp from internet to solve this problem.
    Message Edited by mary2001 on 07-04-2008 12:05 PM

    Hi mary2001
    I have a similar problem, so where did u downloaded the xp? I have a produkt key on the back of my IBM T43, but no cd.
    Please help me...

  • I have a new computer. I've installed iTunes. I don't want to lose the calendar and contact data nor the apps currently on my iPod Touch. Will that happen when I sync?

    I have a new computer. I've installed iTunes. I don't want to lose the calendar and contact data nor the apps currently on my iPod Touch. Will that happen when I sync?

    I don't think so. When you open iTunes, go to "Store" on the top and click "Authorize this Computer." Type in your email and pass, and click authorize. Then, when you connect you iPod for the first time, it should tell you "this iPod is synced with another computer, blah blah." It should give you the option to either "Erase and Sync," or "Transfer Purchases." Click "Transfer Purchases and your content should go into your new iTunes.
    If this doesn't work and you still have your old computer there's another thing you can do. I know this works on windows, but I'm not sure how to do it on a Mac, maybe someone can offer some help. Assuming you have Windows, go to Start>Music>iTunes Media and you should see Music, Apps, Movies, etc. This is all the stuff in your iTunes. If you have an external hard drive or your iTunes library is small in terms of file size, you can do this in one go. Transfer the content (as much as you can fit at one time) onto the external storage. Then, put that content on your new computer on the desktop or somewhere where you can find it again. Open iTunes, and folder by folder highlight everything in the folder and drag it into the iTunes library. It should say "importing (content)" or something and then it should be in your library. If you look in your Music folder again, there should now be another "iTunes" folder there with all of your content back in it.
    Hope one if these options works for you. Best of luck!

  • Path and File name of the attachment

    Hello Srm Guys,
    Where should be the Path and File name of the attachment are stored for a shopping card Item.
    Thanks
    Ram

    Hello Ram,
    Execute the function module BBP_PROCDOC_ITEM_GETDETAIL by providing the item guid,object type . Now it will populate the  et_attach importing parameter with the attatchement details.
    In the ET_ATTATCH internal table , the field PHIO_FNAME/PHIO_PATH_FILE provides the physical storage location of the document.
    Hope this info will be helpful.
    Regards,
    Mani

  • The server is available on your computer. Access the volumes and files locally.

    I have actually solved this issue. However, it was not easy to find support for this specific issue. Here's the problem and solution that worked for me.
    The Problem
    I had an issue with my Macbook Pro and Mac Pro connecting to each other. All of a sudden, I got this message "The server COMPUTERNAME is available on your computer. Access the volumes and files locally."
    The Solution
    After a bit of digging, I found this article:
    http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-wo rkaround/
    Steps 1 and 2 of that article seemed to do the trick for me:
    Launch /Applications/Utilities/Terminal and do:
    sudo chmod o+w /Library/Preferences
    defaults write /Library/Preferences/com.apple.AppleShareClient afp_host_prefs_version -int 1
    Now restart your computer.
    From Finder, select an AFP server, or use “Connect To…”.  This will cause the AFP Client to create the full preferences file.
    Thanks to http://www.alexanderwilde.com for helping me solve this.

    Hi,
    I also encountered this error but in a different situation : after having restored my Lion installation from a Time Machine backup, everything was okay except that I couldn't connect to any disk attached to my Airport extreme.
    I searched for hours and even restored my backup a second time. The problem is specific to only one client since my Macbook was still able to connect to the AE. I ended up resetting all the settings on the AE and restoring them one by one.
    The problem appears when I restore the address range distributed by the AE's DHCP server to the one that was configured before.
    Thus the solution seems to change this address range. Must be something related to a network route or cache or anything like this.
    I hope it will help anybody who encounters this problem. Luckily it seems there are very few : the number of occurences of this problem in google is very low.
    Matt

  • How do I stop Photoshop CS6 from asking to save changes to a file when closing the file, after "savi

    I save a lot of files to "save for web". After saving PS asks if I want to save changes to the original file. I never want to save the changes to the original. Since the default is to change the file I am afraid I will accidentally OK the change without wanting to. I would like it to stop asking and just not save it. Is there a way?

    Stephen Douge wrote:
    I never want to mess with originals. I am asking because I want to make sure I stated the question properly in the first place. Thanks.
    Then don't work on the original open the file using Photoshop menu file>open once its in Photoshop as a document dupe the document and close the original document. Photoshop will just close the original and not ask it you want to save the original document for no changes were made to it.  You could easily record an action to automate this process. The first step in the action would be an inserted menu item menu File>Open.  The second step Duplicate Document, third step select previous document the fourth and final step close. The action would look like this recorded Work in the dupe and save it under the name you want to where you want it saved. The First step is an interactive you will be able to open any file Photoshop has support for that you have access to.

  • My ringer is no longer working for text and email notifications. Only working for phone calls. I have gone through all the settings to see where something is off. Not finding anything. I have tried changing the tone and it just vibrates on everything.

    My ringer is no longer working for text and email notifications. Only working for phone calls. I have gone through all the settings to see where something is off. Not finding anything. I have tried changing the tone and it just vibrates on everything.

    Ok so I happened to figure it out while on the phone to apple support. Even though the guy was very nice, I think I knew more than him! He was explaining very basic resolution principles I played about. I had the second option in displays resolution. All I did was unplug the HDMI cable, click on 'best for display' then plugged the HDMI in and my resolution on the normal monitor changed to the normal blue, then went black momentarily and then changed to a strange resolution but another window appeared that said SONY BRAVIA HDMI at the top! Hey presto! Don't know why it didn't do it yesterday - I probably left the HDMI cable in or something! Oh well. Problem solved!

  • Photoshop CS6 crashes all the time and especially when using the type tool... please help!

    Photoshop CS6 crashes all the time and especially when using the type tool... please help!

    Since I did not have this problem with CS5 or CS4, I can only assume something is not right with Photoshop CS6... below is my video card info:
    ATI Radeon HD 4850:
      Chipset Model:          ATI Radeon HD 4850
      Type:          GPU
      Bus:          PCIe
      PCIe Lane Width:          x16
      VRAM (Total):          512 MB
      Vendor:          ATI (0x1002)
      Device ID:          0x944a
      Revision ID:          0x0000
      ROM Revision:          113-B9110C-425
      EFI Driver Version:          01.00.383
      Displays:
    iMac:
      Resolution:          2560 x 1440
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Built-In:          Yes
      Connection Type:          DisplayPort
    Cinema HD:
      Resolution:          1920 x 1200
      Pixel Depth:          32-Bit Color (ARGB8888)
      Display Serial Number:          2A80273WXMN
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported

Maybe you are looking for

  • Ssrs 2008 r2 date parameter not working all the time

    In an SSRS 2008 r2 report, I am not getting some records selected when I run the report in the ssrs 2008 r2 report. However when I run the sql in ssis manager, the records are selected. Thus I am trying to determine why some of the records are not se

  • A QUICK QUESTION ABOUT ANYCONNECT THIRD PARTY CA WITH OCSP RESPONDER.

    Hi guys, i have successfully implemented anyconnect with a third party ca server (EBJCA) and CRL for revocation checking. Now i want to implement OCSP instead of CRL. I followed this document: http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/pro

  • How to use windows authentication to MSSQL2008 from oim running in Linux

    Hi All, We have developed the code (in eclipse) in local windows machine to call sample stored procedures in MSSQL.The code works fine from client and are able to create, update users in MSSQL from windows. We have OIM 11g R2 installed in Linux 6 on

  • New to IPS, what do I need to plan before I turn this on?

    Hi, I have an ASA 5520 AIP-SSM 10. I'm having a consultant in to enable and upgrade our IPS on our ASA from 1.5 to 1.6 so it's intergrated into the ASDM (sounds difficult). He said I need to plan what policies we need to enable for the interfaces and

  • 16 to 8 bit conversion in Elements 6 Mac

    What is happening when a file is changed from 16 to 8 bits in Elements? Are the bottom 8 bits simply truncated out? Or is a dithering algorithm applied? Thanks.