This Author published in this journals
All Journal Journal Collabits
Wijaya, Agil Dwiki
Unknown Affiliation

Published : 1 Documents Claim Missing Document
Claim Missing Document
Check
Articles

Found 1 Documents
Search

FILE SEARCH ON AN FTP SERVER USING THE FUZZYWUZZY METHOD AND THE DFS ALGORITHM Syuhur, Naufal Saidhus; Jokonowo, Bambang; Wijaya, Agil Dwiki
Journal Collabits Vol 1, No 1 (2024)
Publisher : Journal Collabits

Show Abstract | Download Original | Original Source | Check in Google Scholar | DOI: 10.22441/collabits.v1i1.25561

Abstract

The Depth-First Search (DFS) algorithm can be used to search for files on an FTP server. The fuzzywuzzy method can be applied to perform fuzzy string matching for the file names. To implement this, one can establish a connection to the FTP server using a programming language that supports FTP operations, retrieve the file listings using DFS, apply fuzzy matching to the file names, and retrieve the matching files. The fuzzywuzzy method is a string matching library that uses the Levenshtein Distance to calculate the differences between sequences. While there are no specific examples of using DFS with fuzzywuzzy on an FTP server, the general approach can be implemented using ftplib in Python for FTP operations and the fuzzywuzzy library for fuzzy string matching.