    

 ## On this page

  

 

 # URL

 Last update: 16.07.2025 

<a id="l00001" name="l00001"></a> 1\#ifndef CFFSDK\_PROJECT\_URL\_H

<a id="l00002" name="l00002"></a> 2\#define CFFSDK\_PROJECT\_URL\_H

<a id="l00003" name="l00003"></a> 3 

<a id="l00004" name="l00004"></a> 4\#include "Project/LibraryType.hpp"

<a id="l00005" name="l00005"></a> 5\#include &lt;string&gt;

<a id="l00006" name="l00006"></a> 6\#include &lt;vector&gt;

<a id="l00007" name="l00007"></a> 7namespace [ansys](namespaceansys.xhtml) {

<a id="l00008" name="l00008"></a> 8namespace Project {

<a id="l00009" name="l00009"></a> 9 

<a id="l00010" name="l00010"></a> 10typedef std::string URLType;

<a id="l00011" name="l00011"></a> 11 

<a id="l00012" name="l00012"></a>[ 12](classansys_1_1_project_1_1_u_r_l.xhtml)class ANSYS_PROJECT_DLL [URL](classansys_1_1_project_1_1_u_r_l.xhtml) {

<a id="l00013" name="l00013"></a> 13public:

<a id="l00014" name="l00014"></a> 14 [URL](classansys_1_1_project_1_1_u_r_l.xhtml)();

<a id="l00015" name="l00015"></a> 15 [URL](classansys_1_1_project_1_1_u_r_l.xhtml)(const std::string&amp; pStr);

<a id="l00016" name="l00016"></a> 16 [URL](classansys_1_1_project_1_1_u_r_l.xhtml)(const std::string&amp; pType,const std::string&amp; pStr);

<a id="l00017" name="l00017"></a> 17 [URL](classansys_1_1_project_1_1_u_r_l.xhtml)(const char* pStr);

<a id="l00018" name="l00018"></a> 18 [~URL](classansys_1_1_project_1_1_u_r_l.xhtml)();

<a id="l00019" name="l00019"></a> 19 

<a id="l00020" name="l00020"></a> 20 std::string getFilename() const;

<a id="l00021" name="l00021"></a> 21 std::string getItemName() const;

<a id="l00022" name="l00022"></a> 22 std::string getFilenameRoot() const;

<a id="l00023" name="l00023"></a> 23 std::string getFilenamePath() const;

<a id="l00024" name="l00024"></a> 24 std::string getURLString() const;

<a id="l00025" name="l00025"></a> 25 std::vector&lt;std::string&gt; getURLComponents() const;

<a id="l00026" name="l00026"></a> 26 [URL](classansys_1_1_project_1_1_u_r_l.xhtml) getURLSubset(int pComponentStart,int pEnd = -1) const;

<a id="l00027" name="l00027"></a> 27 

<a id="l00028" name="l00028"></a> 28 bool isValid() const;

<a id="l00029" name="l00029"></a> 29 bool isNull() const;

<a id="l00030" name="l00030"></a> 30 bool isLocalPath() const;

<a id="l00031" name="l00031"></a> 31 bool isRelativePath() const;

<a id="l00032" name="l00032"></a> 32 bool isGlobalPath() const;

<a id="l00033" name="l00033"></a> 33 bool isInside(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; pURL) const;

<a id="l00034" name="l00034"></a> 34 

<a id="l00035" name="l00035"></a> 35 URLType getType() const;

<a id="l00036" name="l00036"></a> 36 const std::string&amp; str() const;

<a id="l00037" name="l00037"></a> 37 const char* c_str() const { return str().c_str(); };

<a id="l00038" name="l00038"></a> 38 

<a id="l00039" name="l00039"></a> 39 void toGlobal(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; pRootPath);

<a id="l00040" name="l00040"></a> 40 void toRelative(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; pRefDir);

<a id="l00041" name="l00041"></a> 41 void simplifyURL();

<a id="l00042" name="l00042"></a> 42 

<a id="l00043" name="l00043"></a> 43 bool operator!=(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; pURL) const;

<a id="l00044" name="l00044"></a> 44 bool operator==(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; pURL) const;

<a id="l00045" name="l00045"></a> 45 bool operator==(const std::string&amp; pURLString) const;

<a id="l00046" name="l00046"></a> 46 

<a id="l00047" name="l00047"></a> 47 [URL](classansys_1_1_project_1_1_u_r_l.xhtml) operator+(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; p2) const;

<a id="l00048" name="l00048"></a> 48 [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; operator+=(const [URL](classansys_1_1_project_1_1_u_r_l.xhtml)&amp; p2);

<a id="l00049" name="l00049"></a> 49 

<a id="l00050" name="l00050"></a> 50 bool normalizeToFolder();

<a id="l00051" name="l00051"></a> 51private:

<a id="l00052" name="l00052"></a> 52 void computeType();

<a id="l00053" name="l00053"></a> 53 void normalizeURL();

<a id="l00054" name="l00054"></a> 54 bool isWindowsShare() const;

<a id="l00055" name="l00055"></a> 55 

<a id="l00056" name="l00056"></a> 56 std::string aURL;

<a id="l00057" name="l00057"></a> 57 URLType aType;

<a id="l00058" name="l00058"></a> 58};

<a id="l00059" name="l00059"></a> 59 

<a id="l00060" name="l00060"></a> 60}

<a id="l00061" name="l00061"></a> 61}

<a id="l00062" name="l00062"></a> 62 

<a id="l00063" name="l00063"></a> 63\#endif // CFFSDK\_PROJECT\_URL\_H

[ansys::Project::URL](classansys_1_1_project_1_1_u_r_l.xhtml)

The address of a local or remote file, using the URI format.

**Definition:** URL.hpp:12



[ansys](namespaceansys.xhtml)

**Definition:** API.dox:1