Crates.io | qfile |
lib.rs | qfile |
version | 3.0.1 |
source | src |
created_at | 2022-11-28 19:44:58.318574 |
updated_at | 2023-02-21 03:53:02.22229 |
description | Crate for accessing a file by path, case insensitive. Automatic detection, create a path with a new file or open an existing file |
homepage | |
repository | https://github.com/m62624/qfile |
max_upload_size | |
id | 724728 |
size | 99,889 |
The Qfile crate provides functionality for accessing a file by path, case-insensitive, including automatic detection, creation of a path with a new file or opening an existing file. It includes several submodules to handle different aspects of file handling, such as initialization, reading, and writing. The crate also defines some custom errors related to file operations.
qfile is not the rust version of qfile from the QT framework
let path1 = "File.txt";
let path2 = "./File.txt";
let path3 = "../../File.txt";
let path4 = String::from("Folder/Folder/File.txt");
let path1 = "File.txt";
let path2 = ".\\File.txt";
let path3 = "..\\..\\File.txt";
let path4 = "D:\\Folder\\file.txt";
let path5 = r"D:\Folder\file.txt";
let path6 = String::from("D:\\Folder\\file.txt");
This is the method that kicks off the directory search. It takes in the search location, names of files to search for, excluded directories, whether or not to follow symbolic links, and a channel to send the results back on.
It uses the rayon crate to parallelize the search over multiple threads for better performance.
The algorithm first filters out the excluded directories, and then iterates through the remaining directories to find all the files that match the specified search criteria. If a match is found, the path of the file is sent to the Sender object.
use qfile::{QFilePath,Directory};
use std::sync::mpsc;
let (tx, rx) = mpsc::channel();
QFilePath::find_paths(
// specifies the directories to search from, where the search should start.
Directory::ThisPlace(vec!["src", "another_folder", "/home/user/my_project"]),
// names of items to search in the file system
vec!["main.rs", "lib.rs", "photo-1-2.jpg"],
// folders to exclude search
Some(vec!["src/tests", "another_folder/tmp"]),
// follow links
false,
// Sender channel
tx,
)?;
for path in rx {
println!("{}", path.display().to_string());
}
The method for writing to a file depends on the current context, case insensitive
use qfile::{QFilePath, QTraitSync};
// real path : myFolder/file.txt
let mut file = QFilePath::add_path("MyFolder/file.TXT")?;
file.auto_write("text1 text1 text1")?;
file.auto_write("text2 text2 text2")?;
use qfile::{QFilePath, QTraitAsync};
// real path : myFolder/file.txt
let mut file = QFilePath::async_add_path("MyFolder/file.TXT").await?;
file.lock().await.auto_write("text1 text1 text1").await?;
file.lock().await.auto_write("text2 text2 text2").await?;
Unix format | Windows format | |
---|---|---|
The path we specified: | folder1/FolDER2/file.TXT |
folder1\FolDER2\file.TXT |
Real path : | ./Folder1/Folder2/file.txt |
.\Folder1\Folder2\file.txt |
Result : | ./Folder1/Folder2/file.txt |
.\Folder1\Folder2\file.txt |
Unix format | Windows format | |
---|---|---|
The path we specified: | ./main_folder/folder_new/file.txt |
.\main_folder\folder_new\file.txt |
Real path : | ./Main_Folder |
.\Main_Folder |
Result : | ./Main_Folder/folder_new/file.txt |
.\Main_Folder\folder_new\file.txt |
- The Windows file system treats file and directory names as case insensitive.
file.txt
andFILE.txt
will be treated as equivalent files (Although the path is case insensitive in windows (..\FOLDER\file.txt
), you can return a case-sensitive path with :get_path_string()
orget_path_buf()
).
Method for reading the contents of a file (String
), case insensitive
use qfile::{QFilePath, QTraitSync};
// real path : myFolder/file.txt
let mut file = QFilePath::add_path("MyFolder/file.TXT")?;
let text = file.read()?;
println!("content: {}", text);
use qfile::{QFilePath, QTraitAsync};
// real path : myFolder/file.txt
let mut file = QFilePath::async_add_path("MyFolder/file.TXT").await?;
let text = file.lock().await.async_read().await?;
println!("content: {}", text);