1 2 3 4 5 6 7 8 9 10
use std::{io, path::Path}; use super::Metadata; pub async fn symlink_metadata(_path: impl AsRef<Path>) -> io::Result<Metadata> { Err(io::Error::new( io::ErrorKind::Unsupported, "Symbolic links are not supported on OPFS", )) }