/*
FileAttachments:
a: ./a.txt
b: ./b.txt
c: ./c.txt
*/
files = [FileAttachment("a"), FileAttachment("b"), FileAttachment("c")]
When a.txt gets deleted, the rendered notebook should reflect that (so authors know if they accidentally broke their notebook). When b.txt gets added, the rendered notebook should reflect that (so authors know if they "fixed' their notebook).
But if c.txt updates (ie file metadata change or contents change), then FileAttachment shouldn't refresh, that's the job for LiveFileAttachment.
When
a.txtgets deleted, the rendered notebook should reflect that (so authors know if they accidentally broke their notebook). Whenb.txtgets added, the rendered notebook should reflect that (so authors know if they "fixed' their notebook).But if
c.txtupdates (ie file metadata change or contents change), thenFileAttachmentshouldn't refresh, that's the job forLiveFileAttachment.