Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7982463
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T10:41:14+00:00 2026-06-04T10:41:14+00:00

The following tests passes: File aDir = new File(aDir); assertTrue(aDir.exists()); assertTrue(aDir.isDirectory()); assertFalse(aDir.isFile()); File aFile

  • 0

The following tests passes:

    File aDir = new File("aDir");
    assertTrue(aDir.exists());
    assertTrue(aDir.isDirectory());
    assertFalse(aDir.isFile());

    File aFile = new File("aFile");
    assertTrue(aFile.exists());
    assertFalse(aFile.isDirectory());
    assertTrue(aFile.isFile());

    File awol = new File("notInFileSystem");
    assertFalse(awol.exists());
    assertFalse(awol.isDirectory());
    assertFalse(awol.isFile());

On the surface of things, And it seems to imply that for all files where file.isFile() is true, file.isDirectory() is false. Is there any known type of file system/file type/java platform where this assumption does not hold?

(There are all sorts of wild in-betweeen categories of files (symlinks, junction points, symlinks/junction points with missing targets etc) that may behave slightly differently)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T10:41:15+00:00Added an answer on June 4, 2026 at 10:41 am

    Looking at JavaDoc, this seems to be always the case:

    http://docs.oracle.com/javase/7/docs/api/java/io/File.html#isFile()

    isDirectory:

    true if and only if the file denoted by this abstract pathname exists
    and is a directory; false otherwise

    isFile:

    true if and only if the file denoted by this abstract pathname exists
    and is a normal file; false otherwise
    A file is normal if it is not a directory and, in addition,
    satisfies other system-dependent criteria. Any non-directory file
    created by a Java application is guaranteed to be a normal file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following test case passes in .NET 4.0: var fiT = new FileInfo(myhappyfilename); Assert.IsNotNull(fiT);
I have the following controller: class Tests extends CI_Controller { public function update_record_test() {
It seems like EasyMock tests tend to follow the following pattern: @Test public void
When running some tests I came across the following issue. When using: private String
While doing some JavaScript performance tests I came up with the following piece of
I have the following code (correct for my simple tests) for a linked list
Almost all of my JUnit tests are written with the following signature: public void
How to write tests where conditions like the following arise: Test user Input. Test
I have the following actor for which I would like to create unit tests
I have the following method (used to generate friendly error messages in unit tests):

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.