1# File Management Subsystem Changelog 2 3## cl.filemanagement.1 Filter Module Change 4 5Moved **Filter** from **@ohos.fileio** to **@ohos.file.fs**. The attributes of **Filter** remain unchanged. 6 7**Change Impact** 8 9If your application is developed using the APIs of earlier versions, note that the position of **Filter** in the **d.ts** file and the module name are changed. The **Filter** type is moved to **@ohos.file.fs**. 10 11**Key API/Component Changes** 12 13Before the change, **Filter** is in the **@ohos.fileio** module and imported as follows: 14 15```js 16import Filter from '@ohos.fileio'; 17``` 18 19**Adaptation Guide** 20 21Now, **Filter** is in the **@ohos.file.fs** module and imported as follows: 22 23```js 24import Filter from '@ohos.file.fs'; 25``` 26