Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Java in General
Search Coderanch
Advanced search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Devaka Cooray
Campbell Ritchie
Tim Cooke
Ron McLeod
Liutauras Vilda
Sheriffs:
Junilu Lacar
paul wheaton
Paul Clapham
Saloon Keepers:
Piet Souris
Bartenders:
Forum:
Java in General
How to create a Folder using Java
Ramesh Shanmugam
Ranch Hand
Posts: 132
posted 21 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
How to create a Folder using Java. I want to create a new folder using the Java code
Ramesh Shanmugam - SCJP 1.5
Kalai Selvan
Ranch Hand
Posts: 79
posted 21 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi Ramesh,
Here is the code for creating a directory........
import java.io.*; class Gen { public static void main(String[] args) { File dir = new File("dir"); dir.mkdir(); } }
Kalai Selvan T.
Ernest Friedman-Hill
author and iconoclast
Posts: 24208
47
I like...
posted 21 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Moving to Java in General(Intermediate) for any further discussion.
[Jess in Action]
[AskingGoodQuestions]
Consider Paul's
rocket mass heater
.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
how to create files in src folder in java
Creation of folder in java
create folder on remote system
how to send draft to MSOutlook from a java program
create Folder in Docbase
More...