Skip to content

Instantly share code, notes, and snippets.

@gregw
gregw / sym.java
Created July 9, 2021 00:10
test symlink
@Test
public void testSymbolicLink(TestInfo testInfo) throws Exception
{
File dir = MavenTestingUtils.getTargetTestingDir(testInfo.getDisplayName());
FS.ensureEmpty(dir);
File realFile = new File(dir, "real");
Path realPath = realFile.toPath();
FS.touch(realFile);
File linkFile = new File(dir, "link");