Optional
const response = await myDir.list();orconst response = await myDir.list({ depth: 1 }); Copy
const response = await myDir.list();orconst response = await myDir.list({ depth: 1 });
const response = await myDir.listInfo();orconst response = await myDir.listInfo({ depth: 1 }); Copy
const response = await myDir.listInfo();orconst response = await myDir.listInfo({ depth: 1 });
const response = await myDir.rename({ newPath: '/tmp/dir2' }); Copy
const response = await myDir.rename({ newPath: '/tmp/dir2' });
Example