I backed up the database used in the article then restored it to a different database on the same SQL Server 2008 instance (I only have 1 right now, running in a Virtual PC).
Backup command: backup database sql2008_fs to disk = 'c:\temp\sql2008_fs.bak'
View the backup contents command: restore filelistonly from disk = 'c:\temp\sql2008_fs.bak'
Partial Output :
LogicalName PhysicalName
--------------- ---------------------------------------------------------------------------------------
sql2008_fs C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\sql2008_fs.mdf
sql2008_fs_log C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\sql2008_fs_log.ldf
fs_filestream C:\db\sql2008_fs
Note that the fs_filestream logical name is the filegroup setup for filestream.
Then I did a restore to another database name, moving the files to a different location on the same server.
restore database sql2008_fs_2
from disk = 'c:\temp\sql2008_fs.bak'
with
move 'sql2008_fs' to 'c:\temp\sql2008_fs.mdf',
move 'sql2008_fs_log' to 'c:\temp\sql2008_fs_log.ldf',
move 'fs_filestream' to 'c:\temp\sql2008_fs'
I opened the new database; it looks the same as the original.