XP/DW CS4 - Delete Local Files In Site View

Hi -  I've recently begun using a PC for webdesign at work (coming from OSX).
When I am in "Site View" in DW CS4 and I delete a file or folder locally from my PC's HD it takes a really long time (aprox 1.5 minutes) to complete. Sometimes this actually causes DW to crash completely.
Not to start a flame war or anything but on my Mac this feature works beautifully - DW has no problem playing nicely with the finder. Anyone know how I can resolve this other than leaving DW and going to Windows Explorer to delete local files and folders?
Thanks!

saracita wrote:
> Does DW CS4 have an option to view Map in the files
panel?
No. It's one of the features that was removed from CS4. Adobe
announced
the decision to remove it in August 2007:
http://www.adobe.com/go/kb402489
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS4",
"PHP Solutions" & "PHP Object-Oriented Solutions"
http://foundationphp.com/

Similar Messages

  • Service for delete local files in Business Connector

    I have used the "get" service for copy the files in the Business connector, does anybody know if there is any service for delete local files, i have seen the service for delete remote files with ftp, but i don´t know how to delete the copied files in my server.
    Thanks in advance
    regards

    Hi Carlos,
    For this issue the best choice is create your own Java Service. I attach you the Java code:
      Put this code in a new Java Service
             boolean success = (new File("filename")).delete();
             if (!success) {
                 // Deletion failed
       Before, you must to create an input parameter in the new service where you must to save the file path. Change Filename with the input parameter variable.
       It's not difficult.
    Best Regards
    Ivá

  • Why cant I delete local files when in ftp is there move command...

    why cant I delete local files when in ftp... is there a move command in FTP...

    Ignore the post by Thomasjomson1234 if it is still visible. He is a spammer attempting to phish information.

  • Cant click on or delete a file that sits in "Favorites" (top left) when I use Finder

    I want to delete a file from a list. Not sure how the filename  appeared in the location where it did.
    When I open "Finder", in the top left of the window there is a grouping called "Favourites". It lists "All My Files", "Main Drive", "Applications" etc.  It also now has this listed:  "IMG_0395 (deleted 4e56b607-752345.-89f546)". I guess it is a movie I previously deleted but not sure why it is showing up here.  I can't click on the item in the list (so therefore can't get rid of it).  Tried to include a screen shot here: file://localhost/Users/John/Desktop/Screen%20Shot%202012-10-09%20at%208.29.59%2 0PM.png

    Thx for that im gonna try it....but is there a way to do it without using toolbar or cmd-c...? i mean using only the mouse?why does it have to highlight the file even though i click a bit next to it....?using icon view i can right click next to the folder and i wont have a problem but with list view that i prefer using it will highlight the whole row.....and i dont find free space to right click cause i got many files

  • Delete local files

    how do i delete files with a specific extension name in a specific folder?
    ex: files / * .dat (all dat files in files folder)
    Thanks in advance for your reply.

    list the files and delete each one of them
    http://javaalmanac.com/egs/java.io/GetFiles.html
    http://javaalmanac.com/egs/java.io/DeleteFile.html

  • Trash wont delete all files! Why?!

    When I empty Trash it only deletes one file than sits there like its working but nothing happens no matter how much time I give it. Then it takes forever to stop. How do I fix this so I can actually delete files??

    Visit  The XLab FAQs and read the FAQ on resolving Trash problems.

  • DW CS4 - Local files/site def mess!

    I am running dreamweaver CS4, PC with  Win7pro  OS and my sites are in a complete mess.
    Sycronising keeps referring to files being in the same directory as other sites and I just want to rebuild locally.
    My actual sites on the server are fine. Is there a simple way I can start a fresh set of files/folders/site def's? PLEASE

    To define a fresh site from files on the server...
    Site > New Site
    Give the site a name (this will be the new folder everything is stored in)
    Click Next
    Click Next
    Make sure Edit local copies on my machine is chosen
    Click Next
    Connect via FTP (set all of your FTP info here)
    Click Next
    Click Done
    Now, you should have an empty folder on your Hard Drive with your current site defined as the FTP. Go to the Files tab and connect to your site.
    Click the Get File(s) button
    It will ask if you are sure you want to get the entire site, click OK.
    Once it's all done, you will have a brand new fresh duplicate of your current online site added to your HD with no references to files you no longer have/want in your site.

  • Delete  flat file from the local drive after downloading in the program

    how to <b>delete flat file from the local drive after downloading in the program</b>
    I am using gui_upload to upload flat file data in internal table. and after that i dont want that flat file in the disk. i want to delete it.

    Once the file has been uploaded into the internal table call the<b> FILE_DELETE </b>method of the class  <b>CL_GUI_FRONTEND_SERVICES</b>.
    DATA: v_rc TYPE i.
    CALL METHOD cl_gui_frontend_services=>file_delete
    EXPORTING
    filename = 'C:\TEMP\MATERIAL.TXT'
    CHANGING
    rc = v_rc
    EXCEPTIONS
    file_delete_failed = 1
    cntl_error = 2
    error_no_gui = 3
    file_not_found = 4
    access_denied = 5
    unknown_error = 6
    OTHERS = 7.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Regards
    Kathirvel

  • ACS 5.3, delete local backup files.

    Hello.
    I'm doing a basic setup of ACS 5.3. For now, I'm configuring backup to a local repository
    repository Backup
      url disk:/Backup
    How can I automatically delete old files? I need to keep only the last seven files.
    Thanks.
    Andrea

    I am not aware about anyway to do that.
    You can take a backup then do data purge.
    Deletion of those files can also be possible if you have a root patch and you are aware about where those are being stored in the file system.
    HTH
    Amjad
    Rating useful replies is more useful than saying "Thank you"

  • How to delete a local file in the presentation server.

    Hi All,
    How to delete a local file in the presentation server. As we do using 'delete dataset dsn' in application server. How can i achieve this. My requirement is after uploading file using gui_upload, i want to delete that source file. Please let me know, how can i achieve this.
    Thanks in advance.
    Regards,
    Vishal

    data: l_rc type i.
      data: f_name type string.
        move 'c:\YourFile.txt' to f_name.
        CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_DELETE
          EXPORTING
            FILENAME             = f_name
          CHANGING
            RC                   = l_rc
         EXCEPTIONS
           FILE_DELETE_FAILED   = 1
           CNTL_ERROR           = 2
           ERROR_NO_GUI         = 3
           FILE_NOT_FOUND       = 4
           ACCESS_DENIED        = 5
           UNKNOWN_ERROR        = 6
           NOT_SUPPORTED_BY_GUI = 7
           WRONG_PARAMETER      = 8
           others               = 9
        IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.

  • PS CS4 64-bit (in Web Premium CS4) on Win 7 PC.  I did a duplicate file check on my hdd and deleted dup files. Now I get "Some of the application components are missing from the Application directory, Please reinstall.."

    PS CS4 64-bit (in Web Premium CS4) on Win 7 PC.  I did a duplicate file check on my hdd and deleted dup files. Now when I try to run PS 64-bit I get "Some of the application components are missing from the Application directory, Please reinstall the application." When I do this, it seems to install correctly until the very end, then it says "Installation Complete With Errors", and when I try to run I get the same 'component missing message'. What can I do? PS 32 bit runs fine. Some of the other applications ib Web Premium say the shortcut has been changed or removed. I appreciate your help...Thank you

    Best advice I can think of is to uninstall and run the Clean Script from here.
    Adobe - Adobe CS4 Clean Script

  • Local Files are deleted upon disconnecting from project

    Running Version Cue CS3 3.1.0 with latest Bridge. (PowerMac G5 - OSX 10.4.11)
    Im running the VC server on my local machine. Intention is for only myself to use it for version control.
    I created a project, added my files... the standard local file path is ~/Documents/Version Cue/projectname
    2 issues, perhaps the same issue
    whenever i attempt to disconnect from the project... the local files are deleted...
    so, if i had set a custom path for my projects local files, VC immediately deletes the files, and next time trying to connect, the local file path is reset to the ~/Documents/Version Cue/projectname
    Is this how VC is supposed to function?
    Any help or insight is greatly appreciated!!! Thank you in advance

    Running Version Cue CS3 3.1.0 with latest Bridge. (PowerMac G5 - OSX 10.4.11)
    Im running the VC server on my local machine. Intention is for only myself to use it for version control.
    I created a project, added my files... the standard local file path is ~/Documents/Version Cue/projectname
    2 issues, perhaps the same issue
    whenever i attempt to disconnect from the project... the local files are deleted...
    so, if i had set a custom path for my projects local files, VC immediately deletes the files, and next time trying to connect, the local file path is reset to the ~/Documents/Version Cue/projectname
    Is this how VC is supposed to function?
    Any help or insight is greatly appreciated!!! Thank you in advance

  • How can I enable links from an internet/intranet site to a local file in Firefox 4?

    I'm trying to allow links from an intranet page to a local file (e.g. "file://///server/share/file.jpg"). I found several articles and forum posts about doing this in older versions of Firefox (such as setting security.checkloaduri to false), but nothing seems to work for Firefox 4. Is there a new config option that I need to set to get this to work? Thanks.

    darren199,
    can you tell what you did to get that issue resolved ?
    I am having the same problem :
    Security Error: Content at http://intranet/group/maeva/documents may not load or link to file://///192.168.15.75/Downloads/rich.rtf.
    I created a user.js as suggested in the website (http://kb.mozillazine.org/Links_to_local_pages_don%27t_work) :
    user_pref("capability.policy.policynames", "localfilelinks");
    user_pref("capability.policy.localfilelinks.sites", "http://intranet");
    user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");
    and the file is in C:\Users\Administrator\AppData\Local\Mozilla\Firefox\Profiles\hen5yfyq.default
    After restarting Firefox, I am still stuck with the same error.
    btw, the same links work in IE.
    Same results with file://server/share/file and file://localhost//server/share/file. I tried several URLs of this kind, but FF still stops with the same error message

  • Renamed Macintosh HD now Dreamweaver can't preview local files in Web Browser even though I have redefined local sites

    I've renamed my Macintosh HD on my Macbook something else-and
    then went in and redefined all the local sites in Dreamweaver CS3
    with the new name. Dreamweaver locates all the local files and
    allows me to edit and work on them-but then when I save and preview
    it can't locate the files. I've changed the name of my hard drive
    back to Macintosh HD and still the same problem. I'm completely
    stuck and this is frustrating the hell out of me-what do I
    do?

    If it is during the preview, check the test server
    information in the site settings.

  • If I delete a file in iCloud, what happens to the local file in ~/Library/Mobile Documents ?

    If I delete a file in iCloud, what happens to the local file in ~/Library/Mobile Documents ? Does it get deleted to?
    Hope somebody can help.
    Thx.

    I'm pretty certain that it gets deleted as well. If you try and open that mobile documents folder, it takes you to the iCloud drive folder. I've been searching for this same issue for the last 24 hours also as I inadvertently deleted my Keynote files stored on iCloud drive thinking I was just temporarily deleting Keynote from my iPad when upgrading to the latest iOS 8 version. (I needed space and thought, "Oh, I'll just reinstall later... Turns out I was in the iCloud storage area, not in my iPad storage area at the time and therefore deleted all my iCloud stored presentations. From every device.)

Maybe you are looking for

  • How to set user/group in BIEE11G by the information stored in DB

    Hi everyone, I'm using OBIEE11.1.1.6, I'd like to ask are there any way to achive this requirment: I have stored user/group information in DB,the format as follow: ID USER GROUP 1 A G1 2 B G2 so can we obtain the information from DB,then we set these

  • ALV display column

    Dear All, Can I get two sub column under one cloumn in ALV report display? like '30 days' is first column and under that I need 'USD' and 'EUR' Thanks, Fed

  • Confusion trying to include potrait and landscape in same document

    Hello, I believe I have followed the instructions in the Star Office 8 Writer, but I cannot seem to get portrait and landscape pages in the same document. I want the first half of the document portrait and the second half landscape. I can get portrai

  • How to create Activity to a Service Call

    Hi, how can i create an activity to a service call? i have to create an activity first and then add a line in the activities collection of the service call, right? but i always get an error message, when i want to create the contact. Error-Message: "

  • Another one with much higher BB usage than normal

    Hi, This is probably going to sound familiar to lots of people, but we also are recording much higher BB usage than normal. We are only on the 10gb package, as our max 512kb broadband doesn't make it worthwhile trying to do much with the www. Our usa