ebyhr commented on issue #13506: URL: https://github.com/apache/iceberg/issues/13506#issuecomment-3055653279
@saumyapandey1998 We can change the logic to create a file under `temp` directory something like: ```java File testFile = File.createTempFile("junit", null, temp.toFile()); assertThat(testFile.delete()).as("Delete should succeed").isTrue(); ``` ↓ ```java File testFile = temp.resolve("parquet").toFile(); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org