go to  ForumEasy.com   
JavaPro  
 
 
   Home  |  MyForum  |  FAQ  |  Archive    You are not logged in. [Login] or [Register]  
Forum Home » Java Deploying » Create / Delete Directory on Unix / Linux
Email To Friend  |   Set Alert To This Topic Rewarding Points Availabe: 0 (What's this) New Topic  |   Post Reply
Author Topic: Create / Delete Directory on Unix / Linux
Unix
member
offline   
 
posts: 7
joined: 10/06/2011
from: Cupertino, CA
  posted on: 10/06/2011 06:30:22 PM    Edit  |   Quote  |   Report 
Create / Delete Directory on Unix / Linux
The mkdir command

mkdir stands for make directory which is used to create a new directory

Example:

       mkdir mydir

Note:
  • you need the write rights to create a new directory;
  • the newly created directory bears the permission mode of rwxrwxrwx (777)

  •  Profile | Reply Points Earned: 0
    Unix
    member
    offline   
     
    posts: 7
    joined: 10/06/2011
    from: Cupertino, CA
      posted on: 10/06/2011 06:37:09 PM    Edit  |   Quote  |   Report 
    The rmdir command
    rmdir stands for remove directory which is used to delete a empty directory

    Example:

           rmdir mydir

    Note:
  • you need the write rights to run this command.


    To remove a non-empty directory, you have to use:
       rm -f -r mydir

    Note:
  • -f forcibly;
  • -r recursively.


  •  Profile | Reply Points Earned: 0

     
    Powered by ForumEasy © 2003-2005, All Rights Reserved. | Privacy Policy | Terms of Use
     
    Get your own forum today. It's easy and free.