How to delete a whole directory in Contribute CS3

Hello,
Here is my problem :
I've created a new page (html) in my site. This page contains
some pictures.
When I publish this new page, I choose a new directory to
save it : "NewDirectory" for example.
When I visit this new directory, I can see that Contribute
creates an "images" directory and I can see my new html page.
So, now I want to delete my (new) page. I know how to do
that. But my problem is : how to delete the images.
I can do delete them one by one but If I have a lot of image,
it will be very long.
Now my question : how can I delete a whole directory in
contribute without having the following message:
"CONTRIBUTE CAN'T DELETE THIS DIRECTORY. VERIFY DIRECTORY IS
EMPTY" or something like that...
Sorry for my bad english and thanks a lot for your help!!
Victor

Download FileZilla(free) and use FTP to delete the folder and
its contents. Its not possible doing this using Contribute, even
with 'Delete' permissions, you can only delete individual files
that you're allowed to edit. I haven't found any admin-settings
that allow you to delete folders with content (alas).

Similar Messages

  • How to delete a whole line in cmd prompt in Linux

    Hi all,
    How to delete a whole line in cmd prompt in Linux using short key?
    ex: [oracle@host1 ~]$ cd /u01/app/oracle/product/11.2.0/dbhome_1/
    Thanks

    yes ctrl+ak or ctrl+eu both are better. if you look from that perspective, go end and delete will be the same job too. (ctrl+eu) (but for me in such a command line, for example cding in to the directories ,the cursor will be at the end of the line %99 of the time :) )
    about ctrl-t,
    Drag the character before the cursor forward over the character at the cursor, moving the cursor forward as well. If the insertion point is at the end of the line, then this transposes the last two characters of the line.
    for ex:
    misspelled command date -> daet -> ctrl+t -> date
    or
    misspelled command $APPPL_TO -> place the cursor on third P press ctrl+t repeateadly till the P will come to the end -> APPL_TOP

  • How to delete a whole cd?

    How to delete a whole cd....I've done this forever and the other day I put on a cd and decided to delete it. Just the ONE cd. it was a Beatles cd and it deleted every single Beatles cd I have! I freaked! I got them all back now,  but am afraid to add Cds now and delete.
    Thank you!
    I have windows 7

    rexlibris wrote:
    You must be viewing the tracks in MUSIC and not from a playlist. You can edit things like album and title but you can't delete anything while viewing a playlist
    Select it in the playlist and press Delete to remove it from the playlist.
    You can Shift Delete to remove it from a playlist & also the library.

  • How to delete THE WHOLE Reading List of Safari iOS 8 in one shot?

    I know how to delete individual items one by one by sliding them to the left, I know how to clear their cache in Settings and I know how to clear Safari's history but  nothing clears the whole Reading List in one stroke.
    How do you do?
    Thank you very much in advance for your answer.

    Please read this book.
    http://www.amazon.com/s?ie=UTF8&rh=i%3Astripbooks%2Cp_27%3AMatthias%20Zierke&field-author=Matthias%20Zierke&page=1
    Rg,
    Harshit

  • How to delete a whole bunch of emails at one time

    How do you delete a whole bunch of emails at one time or do you have to individually 'touch' each one in the editor and delete page by page

    Frog34 wrote:
    Maybe Apple will add a delete all or a way to select multiple ones in their next iteration1
    You can select multiple e-mails for deletion in iOS, no need to wait for an update ... tap Edit, select the ones you want deleted, then tap Delete.
    I can't see how a "delete all" function would be useful -- how often does one delete all messages in a folder?  If that did exist can you imagine the users who'd accidentally clear out their entire Inbox by mistake?

  • How to delete a whole project.

    Hi, expert:
    There is a project, which have WBS, and Network, and Activity and milestone.
    there is no actual cost. but the whole project have been released.
    now the user find that the project must be delete.
    how to delete the project?
    regards!

    Hi,
    if no posting is done then just try following
    delete the activities and milestone from bottom up approach in cj20n.
    then mark network as tech. complete and then from above wbs element delete the network
    then delete the  wbs 
    then delete project
    reagards,
    Sameer

  • How to delete a list-item with Contribute 4

    I use Contribute for a lot of my client for years and a few
    weeks ago i installed Contribute 4 for the first time for a new
    client .We dicovered that it's difficult or impossible to delete a
    list-item in a unordered list. Maybe also in other list-types but
    we haven't tried this yet. Does anybody know how to delete a
    list-item? In Contribute 3 you just had to use the backspace button
    but that isn't working anymore.
    Thanks for your help.
    Maarten Strik
    www.strikdesign.nl

    http://linesofcode.net/snippets/166

  • How to delete the Oracle directory

    I have uninstalled oracle 10g but the directory is still on C:\ . How do you get rid of this directory. I try to delete it and it says the file is in use. msvcr71.dll I used the oracle uninstaller and check the registry. I want to reinstall 10g, but it list a 1 and 2 database. I need to wipe this out HELP.....
    thanks

    restart the server and then try removing the directories.

  • How to index a whole directory?

    Hi,
    what is the best way to automatically index all files of an directory when using 'FILE_DATASTORE' in oracle
    intermedia text (oracle text)? Referring to the Oracte Text documentation I have to insert each file(-name)
    separately into one table (no wildcard):
    begin
    ctx_ddl.create_preference('COMMON_DIR', 'FILE_DATASTORE');
    ctx_ddl.set_attribute('COMMON_DIR', 'PATH', '/mypath'); <-- no wildcard here for all files possible!
    end;
    create table mytable (id number primary key, docs varchar2(2000));
    insert into <mytable> values (..., '<filename_1>');
    insert into <mytable> values (..., '<filename_n>');
    Is there a method in PL/SQL that reads out the filenames of a directory's files and inserts them into the
    table mentioned above? Any other idea to mimic the wildcard (i.e. all files)?
    Many thanks for your replies in advance.
    Best Regards,
    Dan

    Download FileZilla(free) and use FTP to delete the folder and
    its contents. Its not possible doing this using Contribute, even
    with 'Delete' permissions, you can only delete individual files
    that you're allowed to edit. I haven't found any admin-settings
    that allow you to delete folders with content (alas).

  • How to copy the whole directory including subdirectories and files in java

    i have written the code for copying the directory with subdirectories.but directory is copying .but its subdirectories and files are not copying.please tell me how to solve this problem
    import java.io.*;
    public class copy
    private void copyFile(File src, File dst) throws IOException
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dst);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ( (len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    public int copyDirectory(File srcDir, File dstDir) throws IOException
    if (srcDir.isDirectory())
    if (!dstDir.exists())
    dstDir.mkdir();
    String[] children = srcDir.list();
    int c= children.length;
    System.out.println(c);
    for (int i = 0; i < children.length; i++) {
    copyDirectory(new File(srcDir, children),
    new File(dstDir, children[i]));
    else {
    // This method is implemented in e1071 Copying a File
    copyFile(srcDir, dstDir);
    return 1;
    public static void main(String args[]) throws IOException {
    copy c = new copy();
    c.copyDirectory(new File("d:/puvvada/sub "),new File("d:/sub"));
    c.copyFile(new File("d:/puvvada/sub/auth.html"),new File("d:/sub/auth.html")) ;

    It is NOT a ""here's my spec". As simple as it is.
    And of course I know help here is free as in other thousands of forums
    That is not really the issue.  You have already noted that this is not as simple as you thought.  There have been at least three statements in reponse to your request.  The reasons for these statements are that you are asking for someone to
    write a script that is not a simple script.  YOu canwrite a script and post it with questions and your questions will be answered.
    I posted before that you cannot copy applications like Office between systems.  They must be installed.  Office and most other applications can g\be installed by Group Policy.  This -is how we normally do this in Windows.  There is normally
    no other way to do this for a large number of systems.
    For large numbers of arbitrary file we would normally use RoboCopy.  The issues you have had with RoboCopy can be overcome by setting the correct options.  If you are trying to copy Office or other applications you sill likely find that many files
    are locked.  This cannot be overcome by any copy method.  This is one of many reasons why we use Installers for applications.
    I suggest that you learn the basics of Windows and how it manages applications and files.  Getting the fundamentals clear will help you to understand how to perform basic tasks in a Windows network.
    If you really need help with this then you need to step back and explain exactly what is being copied and why.  I can think of no real world scenario where what you are asking for is necessary.  If you can  explain that perhaps we can point
    you at a usable solution.
    Just keep in mind that you cannot remotely install Office or most applications by copying the files.  This has always been true in  Windows.
    ¯\_(ツ)_/¯

  • How to delete the whole array programmatically

    Hello,
    Is it possible to destroy/kill an array programmatically (not delete subset)?  If yes, please tell me how.  THanks in advance.
    Sugento

    Hi Devchander,
    Thank you for your reply.  I'm really surprised.  Are you always working?   By emptying an array, it means LabVIEW still has that particular array in memory, doesn't it? what if I want to completely destroy the array to prevent memory issue?
    I have a PXI-6515, an industrial 24V DIO card, that I used to monitor optical sensors.  I just found out after I hooked it up that the output from DAQmx for DIO is a 1-D boolean array.  I like to be able to plot the digital signals on the Digital Waveform Graph, and to do that I have to use shift register and concactenate the previous array with the newly read digital signal.  I only want to keep the array when a certain criteria is met.  When it's no longer met, I want to "destroy" the array.  Attach is a sample VI.  Is this an efficient way to plot a Digital signal?  also, since i'm using 24V, i can't use the TTL counter.  Is there a VI readily available to count signal highs and lows? I have made a VI that specifically does this but I'm just wondering if there is LabVIEW function that does it.  Thanks.
    Peter
    Attachments:
    testing Digital signal array.vi ‏33 KB

  • How to Delete an iCloud Account's Email (Not the Whole Account, Just the Email)

    Hello,
    A couple of years ago, before iCloud was iCloud and was actually MobileMe, I created my own email on it (an @me.com email) and have had it ever since. Even after it became iCloud, i've kept my @me.com email address and have it to this day. I've used it ever since I created it; however, I absolutely hate using it now, and I really want to just get rid of it. I constantly receive spam messages on it, and I have found Gmail to be a much better email service compared to iCloud. I have been trying to figure out how to delete the email itself and not the whole iCloud account; however, I find it very surprising that I haven't been able to find much information about this at all. I know how to delete the whole iCloud account, but all I want to delete is the email. Is there any possible way to do this? Or is my only solution to delete the whole iCloud account? If I deleted the whole iCloud account, would it affect my Apple ID in any way? If I deleted my iCloud account and it does not affect my Apple ID, then would it be possible for me to delete my iCloud account and create a new one without the email?
    Currently, I only have an iPod Touch 4th Generation running iOS 5.1.1 (I know. It seems very outdated nowadays. ). I also have a Windows 7 computer that I use to access icloud.com, but I don't have the iCloud program actually installed to it.
    Thanks in advance and please help!

    Sorry, but I believe there is no way to properly answer your question.Please start a live chat with Apple for assistance as i believe so their the only ones with the power as so, your email is used for recovery, purchase, and more!If it so changed, you'd need to restart your device, also, your best bet is to just to contact apple also.Didn't help?Sorry!Theres really no way...

  • How to Delete Directory from Azure Storage Account?

    Hi All,
    Currently i am working on Microsoft Windows Azure (SaaS - Application).
    I am facing a problem with the AzureStorage.
    I want to delete a whole directory from the Azure Storage Account.
    For Example : I want to delete following Directory(14).
    https://azurestorage.blob.core.windows.net/blobname/Images/14
    Any help will be appriciated. 
    Thanks in Advance.
    Rakesh T. Gupta, Web Engineer, Ahmedabad, India

    Hi Rakesh,
    We have not heard you in days. Have you managed to write the code to delete a blob directory?
    If not, I'd like to share my code for your reference:
        public void RemoveBlobDirectory()
            string containerName = "blobname";
            string directoryName = "blobname/Images/14/";
            var storageAccount = CloudStorageAccount.Parse("UseDevelopmentStorage=true");
            var blobStorage = storageAccount.CreateCloudBlobClient();
            // Ensure the container is exist.
            var blobContainer = blobStorage.GetContainerReference(containerName);
            blobContainer.CreateIfNotExist();
            foreach (IListBlobItem item in blobStorage.ListBlobsWithPrefix(directoryName))
                if (item.GetType() == typeof(CloudBlob) || item.GetType().BaseType == typeof(CloudBlob))
                    ((CloudBlob)item).DeleteIfExists();
    Please note that the ListBlobsWithPrefix method will scan through all blob entities in order to search the result. So it will potentially have low performance when you have large number of blobs in you storage account.
    Thanks,
    Wengchao Zeng
    Please mark the replies as answers if they help or unmark if not.
    If you have any feedback about my replies, please contact
    [email protected]
    Microsoft One Code Framework

  • How to delete a Logical system?

    Hi all,
    I was trying to execute the Demo examples provided as part of SAP XI. Before executing, I am trying to configure the settings, but I created some Logical Systems which didn't configured well.
    So, I want to delete them in order the reconfigure every thing from begening. But I am uable to delete the Old Logical Sustems completely. I am still seeing them in my Integration Builder(Configuration).
    Please let me know is there any way to delete them.
    Thanks,
    Nagarjuna.

    Hi
    How to delete them from Directory?
    I see them under Scenarios(tab) and when i try to delete tem it says that "They will not be deleted and will be available in Objects(tab)".
    Please help me in this.
    Thanks,
    Nagarjuna.

  • How do I browse directory contents in Contribute CS3?

    Hi everyone!
    I have one of our users uploading photos to our website.  At the moment she uses an FTP connection via Adobe Contribute CS3 to our web server.  This has worked great in the past.  However, at the moment she's uploading pictures to a dynamic website [Wordpress] and not using Contribute to edit the pages directly [as this is obviously done with the Wordpress Administration web panel].  The method she has been using is, within Adobe Contribute CS3, File>Publish File from My Computer.  This is great, but the problem is that she can only upload one file at a time, and if she's already uploaded the file, she has no way of knowing she's uploaded it before, except for that Contribute appends a 001 at the end of the file name.
    How can she access a folder structure within Contribute CS3, treating it like an FTP client?  I'm sure this must be doable.  Yes, I could install an FTP client, but she's very comfortable using Contribute CS3 and uses this application for other portions of the website which are static.
    Thanks in advance for any advice!

    Hi,
         To check if she's already uploaded the file, she can click the Choose button in Contribute. On clicking Choose button, Choose File dialog will be shown. In this dialog, she can browse to the appropriate folder in which she had published the images, and verify the contents.
         For uploading multiple files through Publish File from my Computer, I do not think it is possible as of now. There can be a workaround though, insert all the images you want to a web page, and publish the web page to the website. Then, all the images will be published along with the web page. Then, you can delete that web page.
    Note: The images in a web page, generally are placed in the 'images' directory of the website by Contribute. If you are placing the images in different folder, then, make sure that you change the publish folder for images to that folder.

Maybe you are looking for

  • Error in performing baseline update

    Hi all,           I have done ATG installation 10.2, I installed Endeca,During integration of ATG CRS10.2  with endeca          1.I succesfully created a application with name CRS102,          2.Initialized the services.          3.While I am running

  • Multi monitor cursor swapping

    I've got three monitors lined up and I'm looking for a way to instantly center the cursor on a specific display to avoid dragging it everywhere. I know there's a software called Multi Monitor Mouse for Windows which is supposed to handle that pretty

  • Add value to model nodes

    hi all, I have to populate a model node and execute the RFC so that its updated at the backend and the nodes are once again refreshed. <b>It_Prcgprdg()</b> is the model to which i have to add the record which should be added in the backend and the ou

  • PDF zoom on opening

    When I open PDF's they often open in a zoom mode can I turn this off so they open at 100%

  • Records Manager error message

    Hi there, We just recently upgraded to Records Manager from TRIM version 7.1 and we have been having some issues that I am hoping someone can give me advice on. My collegue keeps getting an error message saying "The requested operation cannot be perf