Developer Function: Server Script: $ps.file.getFileList
## Overview
Use "「$ps.file」" in "[Server Script](/en/manual/table-management-server-script)" to get a list of file names in a specified directory.
## Prerequisites
DisableServerScriptFile in "[Script.json](/en/manual/script-json)" must be set to false.
## Syntax
```
$ps.file.getFileList(section, path)
```
## Parameters
|Parameter|Type|Required|Description|
|:----------|:----------|:---:|:---------------------------|
|section|string|Yes|Section name. For details about sections, see "About Sections" in "「$ps.file」". |
|path|string|Yes|Directory name. For both Windows and Linux, the directory separator is "/". |
## Return Value
Returns an array of file name strings.
## Exceptions
If an exception occurs in C#, the exception class name and error message are placed in the Error object in the server script to raise an exception.
## Usage example
The following example gets a list of file names in a specified directory in the web server and outputs the results to a log.
##### JavaScript
```
const lists = $ps.file.getFileList('test_data','parts');
context.Log('listCnt='+lists.length);
for (const element of lists) {
context.Log('list='+element);
}
```
## Supported Versions
|Supported versions|Body|
|:--|:--|
|1.4.12.0 and later|Added function|
## Related Information
<div id="ManualList"><ul><li><a href="/en/manual/script-json">Set Parameter: Script.json</a><span>10.02.2024 up</span></li></ul></article>
<ul><li><a href="/en/manual/table-management-server-script">Table Management: Server Script</a><span>08.13.2024 up</span></li></ul></article></div><input id="SearchTextHidden" type="hidden" value="" />