Struct tauri::PathResolver

source ·
pub struct PathResolver { /* private fields */ }
Expand description

The path resolver is a helper for the application-specific crate::api::path APIs.

Implementations§

Returns the path to the resource directory of this app.

Helper function for crate::api::path::resource_dir.

Resolves the path of the given resource. Note that the path must be the same as provided in tauri.conf.json.

This function is helpful when your resource path includes a root dir (/) or parent component (..), because Tauri replaces them with a parent folder, so simply using Self::resource_dir and joining the path won’t work.

Examples

tauri.conf.json:

{
  "tauri": {
    "bundle": {
      "resources": ["../assets/*"]
    }
  }
}
tauri::Builder::default()
  .setup(|app| {
    let resource_path = app.path_resolver()
      .resolve_resource("../assets/logo.svg")
      .expect("failed to resolve resource dir");
    Ok(())
  });

Returns the path to the suggested directory for your app’s config files.

Helper function for crate::api::path::app_config_dir.

Returns the path to the suggested directory for your app’s data files.

Helper function for crate::api::path::app_data_dir.

Returns the path to the suggested directory for your app’s local data files.

Helper function for crate::api::path::app_local_data_dir.

Returns the path to the suggested directory for your app’s cache files.

Helper function for crate::api::path::app_cache_dir.

Returns the path to the suggested directory for your app’s log files.

Helper function for crate::api::path::app_log_dir.

👎Deprecated since 1.2.0: Will be removed in 2.0.0. Use app_config_dir or app_data_dir instead.

Returns the path to the suggested directory for your app’s config files.

👎Deprecated since 1.2.0: Will be removed in 2.0.0. Use app_log_dir instead.

Returns the path to the suggested directory for your app’s log files.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more