Function ape::remove [] [src]

pub fn remove<P: AsRef<Path>>(path: P) -> Result<()>

Attempts to remove APE tag from the file at the specified path.

Errors

  • It is considered a error when tag version is not 2.000.
  • It is not considered a error when tag does not exists.

Examples

use ape::remove;

remove("path/to/file").unwrap();