GET api/Paywihz/getAllSubfolderFiles?strUploadPath={strUploadPath}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| strUploadPath | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FilePath| Name | Description | Type | Additional information |
|---|---|---|---|
| Filename | string |
None. |
|
| Path | string |
None. |
|
| Length | string |
None. |
|
| IsDirectory | boolean |
None. |
|
| Last_Modified | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Filename": "sample string 1",
"Path": "sample string 2",
"Length": "sample string 3",
"IsDirectory": true,
"Last_Modified": "sample string 5"
},
{
"Filename": "sample string 1",
"Path": "sample string 2",
"Length": "sample string 3",
"IsDirectory": true,
"Last_Modified": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfPaywihzController.FilePath xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
<PaywihzController.FilePath>
<Filename>sample string 1</Filename>
<IsDirectory>true</IsDirectory>
<Last_Modified>sample string 5</Last_Modified>
<Length>sample string 3</Length>
<Path>sample string 2</Path>
</PaywihzController.FilePath>
<PaywihzController.FilePath>
<Filename>sample string 1</Filename>
<IsDirectory>true</IsDirectory>
<Last_Modified>sample string 5</Last_Modified>
<Length>sample string 3</Length>
<Path>sample string 2</Path>
</PaywihzController.FilePath>
</ArrayOfPaywihzController.FilePath>