Go to the source code of this file.
Functions |
| string_ty * | project_file_path (project *pp, string_ty *file_name) |
| string_ty * | project_file_path (project *pp, fstate_src_ty *src) |
| string_ty * | project_file_path (project *pp, cstate_src_ty *src) |
| string_ty * | project_file_path_by_uuid (project *pp, string_ty *uuid) |
| string_ty * | project_file_directory_conflict (project *, string_ty *) |
| void | project_file_remove (project *, string_ty *) |
| void | project_file_shallow (project *, string_ty *, long) |
| int | project_file_shallow_check (project *, string_ty *) |
| string_ty * | project_file_version_path (project *, fstate_src_ty *, int *) |
Function Documentation
The project_file_path function is used to obtain the absolute path to the given project file.
- Parameters:
-
| pp | The project in question. |
| file_name | The name of the file in question. |
- Returns:
- string containing absolute path of file
- Note:
- It is a bug to callthis function for a file which does not exist, or is not a project source file, or is a removed source file.
The project_file_path function is used to obtain the absolute path to the given project file.
- Parameters:
-
| pp | The project in question. |
| src | The file in question. |
- Returns:
- string containing absolute path of file
- Note:
- It is a bug to callthis function for a file which does not exist, or is not a project source file, or is a removed source file.
The project_file_path function is used to obtain the absolute path to the given project file.
- Parameters:
-
| pp | The project in question. |
| src | The file in question. |
- Returns:
- string containing absolute path of file
- Note:
- It is a bug to callthis function for a file which does not exist, or is not a project source file, or is a removed source file.
The project_file_path_by_uuid function is used to obtain the absolute path to a project file specified by its UUID.
- Parameters:
-
| pp | The project in question. |
| uuid | The UUID of the file in question. |
- Returns:
- string containing absolute path of file
- Note:
- It is a bug to callthis function for a file which does not exist, or is not a project source file, or is a removed source file.