On Mon, 2015-02-09 at 09:58 +0530, Hyder Hashmi wrote:
> Hi All,
>
> When I execute the following code in my project folder, it creates the file
> in my current folder(project folder).
>
> import java.io.File;
> public class CreateFile{
> File f = null;
> try{
> f = new File(
Hi All,
When I execute the following code in my project folder, it creates the file
in my current folder(project folder).
import java.io.File;
public class CreateFile{
File f = null;
try{
f = new File("test.txt");
bool = f.createNewFile();
System.out.println