FileSystem exists

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

FileSystem exists

Flavio Pompermaier
Hi to all,

in my job I have to check if a directory exists and currently I have to write:

Path myDir = new Path(...);
boolean exists = FileSystem.get(myDir.toUri()).exists(myDir);

Is there a better way to achieve this?

Best,
Flavio
Reply | Threaded
Open this post in threaded view
|

Re: FileSystem exists

Stephan Ewen
You can also do "myDir.getFileSystem().exists(myDir)", but I don't think there is a shorter way...

On Mon, Jun 29, 2015 at 12:39 PM, Flavio Pompermaier <[hidden email]> wrote:
Hi to all,

in my job I have to check if a directory exists and currently I have to write:

Path myDir = new Path(...);
boolean exists = FileSystem.get(myDir.toUri()).exists(myDir);

Is there a better way to achieve this?

Best,
Flavio

Reply | Threaded
Open this post in threaded view
|

Re: FileSystem exists

Flavio Pompermaier
Ok..I don't like to repeat twice myDir but for the moment I can live with it ;)

Thanks,
Flavio

On Mon, Jun 29, 2015 at 12:41 PM, Stephan Ewen <[hidden email]> wrote:
You can also do "myDir.getFileSystem().exists(myDir)", but I don't think there is a shorter way...

On Mon, Jun 29, 2015 at 12:39 PM, Flavio Pompermaier <[hidden email]> wrote:
Hi to all,

in my job I have to check if a directory exists and currently I have to write:

Path myDir = new Path(...);
boolean exists = FileSystem.get(myDir.toUri()).exists(myDir);

Is there a better way to achieve this?

Best,
Flavio