What’s the xcopy command in xml? I want to make playlists linked to specific folders. This way every time I add songs to a folder, the playlist is updated automatically. So far I only know how to link a playlist to specific files and not to an entire folder. In batch xcopy or *.* would work, but I do not know in xml.
tigernerve
One Comment
XML is not a programming language, so no xcopy. It’s a markup language to define how data elements relate to each other. For instance, x playlist has n folders, and folder n1 has y songs, etc.
XML files can be manipulated by programming languages though. I.e., you could use a script to read in the XML file, move/change elements, and write the file back out.
Post a Comment