Home
last modified time | relevance | path

Searched refs:symlink_path (Results 1 – 1 of 1) sorted by relevance

/DragonOS/user/apps/test-symlink/src/
H A Dmain.rs13 let symlink_path = "/mnt/myramfs/another/symlink_file.txt"; in main() localVariable
23 symlink(target, symlink_path).expect("Failed to create symlink"); in main()
25 assert!(Path::new(symlink_path).exists(), "Symlink was not created"); in main()
27 let symlink_content = fs::read_link(symlink_path).expect("Failed to read symlink"); in main()
34 fs::remove_file(symlink_path).expect("Failed to remove symlink"); in main()
38 assert!(!Path::new(symlink_path).exists(), "Symlink was not deleted"); in main()